Compare commits

...

2 Commits

Author SHA1 Message Date
Kristina Demeshchik
8b13f90cbe none-scene 2026-01-13 13:45:19 -05:00
Kristina Demeshchik
2ce207d69b apply btn misaligned 2026-01-13 13:45:18 -05:00
3 changed files with 2 additions and 7 deletions

View File

@@ -2657,11 +2657,6 @@
"count": 1
}
},
"public/app/features/inspector/InspectJSONTab.tsx": {
"no-restricted-syntax": {
"count": 1
}
},
"public/app/features/inspector/InspectStatsTab.tsx": {
"@grafana/no-aria-label-selectors": {
"count": 1

View File

@@ -125,7 +125,7 @@ export function InspectJSONTab({ panel, dashboard, data, onClose }: Props) {
return (
<div className={styles.wrap}>
<div className={styles.toolbar} data-testid={selectors.components.PanelInspector.Json.content}>
<Field label={t('dashboard.inspect-json.select-source', 'Select source')} className="flex-grow-1">
<Field label={t('dashboard.inspect-json.select-source', 'Select source')} className="flex-grow-1" noMargin>
<Select
inputId="select-source-dropdown"
options={jsonOptions}

View File

@@ -27,7 +27,7 @@ export const getPanelInspectorStyles2 = (theme: GrafanaTheme2) => {
display: 'flex',
width: '100%',
flexGrow: 0,
alignItems: 'center',
alignItems: 'flex-end',
justifyContent: 'flex-end',
marginBottom: theme.v1.spacing.sm,
}),