mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Tempo: Rewrite style using object (#81278)
This commit is contained in:
@@ -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',
|
||||
}),
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user