File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed
llmstack/client/src/components/apps Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,14 @@ export default function AppEditorMenu(props) {
5353 </ FormControl >
5454 ) : (
5555 < List
56- sx = { { width : "100%" , maxWidth : 360 , bgcolor : "background.paper" } }
56+ sx = { {
57+ width : "100%" ,
58+ maxWidth : 360 ,
59+ bgcolor : "background.paper" ,
60+ "& > .Mui-selected" : {
61+ borderBottom : "1px solid #046fda66" ,
62+ } ,
63+ } }
5764 component = "nav"
5865 ref = { tourRef }
5966 >
@@ -73,7 +80,15 @@ export default function AppEditorMenu(props) {
7380 < ListItemIcon > { item . icon } </ ListItemIcon >
7481 < ListItemText primary = { item . name } />
7582 </ ListItemButton > ,
76- < List component = "div" key = { `${ item . name } -children` } >
83+ < List
84+ component = "div"
85+ key = { `${ item . name } -children` }
86+ sx = { {
87+ "& > .Mui-selected" : {
88+ borderBottom : "1px solid #046fda66" ,
89+ } ,
90+ } }
91+ >
7792 { item . children . map ( ( child ) => (
7893 < ListItemButton
7994 key = { child . name }
You can’t perform that action at this time.
0 commit comments