Skip to content

Commit 66b9a83

Browse files
fix prettier
1 parent 7e0a9c0 commit 66b9a83

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

packages/scenes-client/src/models/object/types/sceneObjectSchemas.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,13 @@ export type RestrictedString = string;
2323
/** Expression that determines styling conditions or a single expression. */
2424
export type ExpressionOrConditions =
2525
| ExpressionString
26-
| { conditions: { condition: ExpressionString; expression: ExpressionString; label?: SafeString }[] };
26+
| {
27+
conditions: {
28+
condition: ExpressionString;
29+
expression: ExpressionString;
30+
label?: SafeString;
31+
}[];
32+
};
2733

2834
/** A structured expression definition that wraps an expression or conditions with optional reusable variable definitions. */
2935
export type StyleExpression = {

0 commit comments

Comments
 (0)