diff --git a/.betterer.results b/.betterer.results index 107bec63ffc..1795f47d98b 100644 --- a/.betterer.results +++ b/.betterer.results @@ -5750,9 +5750,6 @@ exports[`better eslint`] = { [0, 0, 0, "Do not use any type assertions.", "6"], [0, 0, 0, "Unexpected any. Specify a different type.", "7"] ], - "public/app/plugins/datasource/tempo/traceql/QueryEditor.tsx:5381": [ - [0, 0, 0, "Styles should be written using objects.", "0"] - ], "public/app/plugins/datasource/zipkin/ConfigEditor.tsx:5381": [ [0, 0, 0, "Styles should be written using objects.", "0"] ], diff --git a/public/app/plugins/datasource/tempo/traceql/QueryEditor.tsx b/public/app/plugins/datasource/tempo/traceql/QueryEditor.tsx index 130ec34b193..8dee357cef9 100644 --- a/public/app/plugins/datasource/tempo/traceql/QueryEditor.tsx +++ b/public/app/plugins/datasource/tempo/traceql/QueryEditor.tsx @@ -82,7 +82,7 @@ export function QueryEditor(props: Props) { } const getStyles = () => ({ - optionsContainer: css` - margin-top: 10px; - `, + optionsContainer: css({ + marginTop: '10px', + }), });