diff --git a/shell/components/nav/Group.vue b/shell/components/nav/Group.vue index 67649c1bb82..01f97b49c06 100644 --- a/shell/components/nav/Group.vue +++ b/shell/components/nav/Group.vue @@ -49,6 +49,10 @@ export default { }, computed: { + isGroupActive() { + return this.isOverview || (this.hasActiveRoute() && this.isExpanded && this.showHeader); + }, + hasChildren() { return this.group.children?.length > 0; }, @@ -199,7 +203,7 @@ export default {