File tree Expand file tree Collapse file tree
ui/src/components/lib/tabs-panel Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,21 +47,21 @@ export const TabsPanel = <T extends boolean = false>({
4747 < PanelHeader className = { cn ( styles . tabsPanel , className ) } transparent = { mode === 'plain' } >
4848 < Tabs >
4949 { content . map ( ( tab ) => (
50- < ConditionalRender key = { tab . id } conditions = { [ ! tab . disabled ] } >
51- < TabsItem
52- key = { tab . id }
53- aria-controls = { tab . ariaControls }
54- before = { tab . before }
55- disabled = { tab . disabled }
56- id = { tab . id }
57- selected = { tab . id === selectedId }
58- status = { tab . status }
59- onClick = { ( ) => onTabClick ( tab . id ) }
60- >
61- { t ( tab . title ) }
62- </ TabsItem >
63- </ ConditionalRender >
64- ) ) }
50+ < ConditionalRender key = { tab . id } conditions = { [ ! tab . disabled ] } >
51+ < TabsItem
52+ key = { tab . id }
53+ aria-controls = { tab . ariaControls }
54+ before = { tab . before }
55+ disabled = { tab . disabled }
56+ id = { tab . id }
57+ selected = { tab . id === selectedId }
58+ status = { tab . status }
59+ onClick = { ( ) => onTabClick ( tab . id ) }
60+ >
61+ { t ( tab . title ) }
62+ </ TabsItem >
63+ </ ConditionalRender >
64+ ) ) }
6565 </ Tabs >
6666 </ PanelHeader >
6767 { content . map ( ( tab ) => (
You can’t perform that action at this time.
0 commit comments