fix: some navigation issue adn oss missing changes

This commit is contained in:
Ramesh Mane
2026-03-04 14:42:39 +00:00
parent 290741f230
commit 06b453baa8
11 changed files with 243 additions and 128 deletions

View File

@@ -119,13 +119,17 @@ const mainItems = computed<NavItem[]>(() => [
disabled: !hasAvailableBases.value,
onClick: () => onTabClick('data'),
},
{
key: 'automations',
icon: 'ncAutomation',
label: 'Automations',
disabled: !hasAvailableBases.value,
onClick: () => onTabClick('automations'),
},
...(isEeUI
? [
{
key: 'automations',
icon: 'ncAutomation',
label: 'Automations',
disabled: !hasAvailableBases.value,
onClick: () => onTabClick('automations'),
},
]
: []),
{ key: 'divider', icon: '', label: '' },
{ key: 'settings', icon: 'ncSettings', label: 'Settings', onClick: () => onTabClick('settings') },
])