1
0
Fork 0
mirror of synced 2024-08-15 10:01:34 +12:00

Remove selected state from current screen and only show component

This commit is contained in:
Andrew Kingston 2022-03-21 16:06:23 +00:00
parent 123e805668
commit 8a2aa166fc

View file

@ -84,7 +84,8 @@
<NavItem
icon="WebPage"
indentLevel={indent || 1}
selected={$store.selectedScreenId === screen.id}
selected={$store.selectedScreenId === screen.id &&
$store.currentView === "detail"}
opened={$store.selectedScreenId === screen.id}
text={ROUTE_NAME_MAP[screen.route]?.[screen.role] || screen.route}
withArrow={route.subpaths}