Tempo: Rewrite style using object (#81278)

This commit is contained in:
Fabrizio
2024-01-25 23:41:23 +01:00
committed by GitHub
parent 7ab710daa7
commit 366dc8db1b
2 changed files with 3 additions and 6 deletions

View File

@@ -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"]
],

View File

@@ -82,7 +82,7 @@ export function QueryEditor(props: Props) {
}
const getStyles = () => ({
optionsContainer: css`
margin-top: 10px;
`,
optionsContainer: css({
marginTop: '10px',
}),
});