mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 04:06:47 +00:00
fix(nc-gui): oss review changes
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user