File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
invokeai/frontend/web/src/features/ui/components Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import { useStore } from '@nanostores/react';
6
6
import { useAppSelector } from 'app/store/storeHooks' ;
7
7
import type { DockviewApi } from 'dockview' ;
8
8
import { useDndMonitor } from 'features/dnd/useDndMonitor' ;
9
+ import { DockviewWrapper } from 'features/ui/components/DockviewWrapper' ;
9
10
import { GridviewWrapper } from 'features/ui/components/GridviewWrapper' ;
10
11
import { VerticalNavBar } from 'features/ui/components/VerticalNavBar' ;
11
12
import { selectActiveTab } from 'features/ui/store/uiSelectors' ;
@@ -80,7 +81,7 @@ export const AppContent = memo(() => {
80
81
defaultTabComponent={MyCustomTab}
81
82
rightHeaderActionsComponent={RightHeaderActions}
82
83
/> */ }
83
- < GridviewWrapper />
84
+ { advancedLayout ? < DockviewWrapper /> : < GridviewWrapper /> }
84
85
{ /* <PanelGroup
85
86
ref={imperativePanelGroupRef}
86
87
id="app-panel-group"
Original file line number Diff line number Diff line change 63
63
/* this is the tab divider */
64
64
background-color : var (--dv-inactivegroup-tab-divider-color );
65
65
}
66
+
67
+ .dv-active-group .dv-active-tab .dv-default-tab-content {
68
+ /* style the action tab content e.g. its title */
69
+ }
You can’t perform that action at this time.
0 commit comments