Tempo: Rewrite style using object (#81278)

pull/81321/head
Fabrizio 2 years ago committed by GitHub
parent 7ab710daa7
commit 366dc8db1b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      .betterer.results
  2. 6
      public/app/plugins/datasource/tempo/traceql/QueryEditor.tsx

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

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

Loading…
Cancel
Save