PanelDataPane: Render bottom border on tabs bar (#99471)

fix: render bottom border on tabs bar
pull/99486/head
Alex Spencer 5 months ago committed by GitHub
parent 3a94057ec8
commit af640e2e50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      public/app/features/dashboard-scene/panel-edit/PanelDataPane/PanelDataPane.tsx

@ -80,7 +80,7 @@ function PanelDataPaneRendered({ model }: SceneComponentProps<PanelDataPane>) {
return (
<div className={styles.dataPane} data-testid={selectors.components.PanelEditor.DataPane.content}>
<TabsBar hideBorder={true} className={styles.tabsBar}>
<TabsBar className={styles.tabsBar}>
{tabs.map((t) => t.renderTab({ active: t.tabId === tab, onChangeTab: () => model.onChangeTab(t) }))}
</TabsBar>
<ScrollContainer backgroundColor="primary">

Loading…
Cancel
Save