diff --git a/web-frontend/src/main/v3/packages/ui/src/components/GlobalSearch/GlobalSearch.tsx b/web-frontend/src/main/v3/packages/ui/src/components/GlobalSearch/GlobalSearch.tsx index 3d0bb56236b3..57a0fa6a3a27 100644 --- a/web-frontend/src/main/v3/packages/ui/src/components/GlobalSearch/GlobalSearch.tsx +++ b/web-frontend/src/main/v3/packages/ui/src/components/GlobalSearch/GlobalSearch.tsx @@ -63,7 +63,11 @@ export const GlobalSearch = ({ services }: GlobalSearchProps) => { return ( portalTargetElement && createPortal( - + { diff --git a/web-frontend/src/main/v3/packages/ui/src/components/Inspector/charts/InspectorChart.tsx b/web-frontend/src/main/v3/packages/ui/src/components/Inspector/charts/InspectorChart.tsx index a1c0252bbba8..453bb165dd73 100644 --- a/web-frontend/src/main/v3/packages/ui/src/components/Inspector/charts/InspectorChart.tsx +++ b/web-frontend/src/main/v3/packages/ui/src/components/Inspector/charts/InspectorChart.tsx @@ -9,7 +9,7 @@ export interface InspectorChartProps extends ChartCoreProps { export const InspectorChart = ({ data, children, ...props }: InspectorChartProps) => { return ( - + {data?.title} diff --git a/web-frontend/src/main/v3/packages/ui/src/components/SystemMetric/charts/SystemMetricChartFetcher.tsx b/web-frontend/src/main/v3/packages/ui/src/components/SystemMetric/charts/SystemMetricChartFetcher.tsx index 4d35a38a77e2..3d789bc2086f 100644 --- a/web-frontend/src/main/v3/packages/ui/src/components/SystemMetric/charts/SystemMetricChartFetcher.tsx +++ b/web-frontend/src/main/v3/packages/ui/src/components/SystemMetric/charts/SystemMetricChartFetcher.tsx @@ -142,7 +142,7 @@ export const SystemMetricChartFetcher = ({ return ( - + {title} {tagGroup && ( diff --git a/web-frontend/src/main/v3/packages/ui/src/components/ui/command.tsx b/web-frontend/src/main/v3/packages/ui/src/components/ui/command.tsx index 8288c1549401..6e860ed29b53 100644 --- a/web-frontend/src/main/v3/packages/ui/src/components/ui/command.tsx +++ b/web-frontend/src/main/v3/packages/ui/src/components/ui/command.tsx @@ -21,12 +21,14 @@ const Command = React.forwardRef< )); Command.displayName = CommandPrimitive.displayName; -interface CommandDialogProps extends DialogProps {} +interface CommandDialogProps extends DialogProps { + dialogClassName?: string; +} -const CommandDialog = ({ children, ...props }: CommandDialogProps) => { +const CommandDialog = ({ children, dialogClassName, ...props }: CommandDialogProps) => { return ( - + {children}