DashboardScene: Remove min height on viz picker scroll container (#87172)

removed min height prop
pull/87233/head
Sergej-Vlasov 1 year ago committed by GitHub
parent 1d06f33a8e
commit 4d37e11ce9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      public/app/features/dashboard-scene/panel-edit/PanelVizTypePicker.tsx

@ -73,7 +73,7 @@ export function PanelVizTypePicker({ vizManager, data, onChange }: Props) {
<Field className={styles.customFieldMargin}>
<RadioButtonGroup options={radioOptions} value={listMode} onChange={setListMode} fullWidth />
</Field>
<CustomScrollbar autoHeightMin="100%">
<CustomScrollbar>
{listMode === VisualizationSelectPaneTab.Visualizations && (
<VizTypePicker pluginId={panel.state.pluginId} searchQuery={searchQuery} onChange={onVizTypeChange} />
)}

Loading…
Cancel
Save