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 c739bc8470
commit 344daa349e
1 changed files with 2 additions and 1 deletions

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}