fix(nc-gui): oss review changes

This commit is contained in:
Ramesh Mane
2025-05-28 09:42:18 +00:00
parent 06db7b5e66
commit f14c7a6b3b
3 changed files with 16 additions and 12 deletions

View File

@@ -38,8 +38,8 @@ const helpItems: CategoryItemType[] = [
{
title: t('labels.apis'),
icon: 'ncCode',
e: 'c:nocodb:api-open',
link: 'https://community.nocodb.com/',
e: '',
link: '',
subItems: [
{
title: t('labels.dataApiV2'),
@@ -106,9 +106,11 @@ const helpItems: CategoryItemType[] = [
]
const openUrl = (item: ItemType) => {
$e(item.e, {
trigger: 'mini-sidebar',
})
if (item.e) {
$e(item.e, {
trigger: 'mini-sidebar',
})
}
if (item.onClick) {
item.onClick()