diff --git a/packages/nc-gui-v2/components.d.ts b/packages/nc-gui-v2/components.d.ts index 7f40eaa2d6..9dc4db9d73 100644 --- a/packages/nc-gui-v2/components.d.ts +++ b/packages/nc-gui-v2/components.d.ts @@ -7,7 +7,6 @@ export {} declare module '@vue/runtime-core' { export interface GlobalComponents { - '(refactor(gui-v2)': replace project create vuetify menu with antd) ADropdown: typeof import('ant-design-vue/es')['Dropdown'] ALayout: typeof import('ant-design-vue/es')['Layout'] ALayoutContent: typeof import('ant-design-vue/es')['LayoutContent'] diff --git a/packages/nc-gui-v2/pages/projects/index.vue b/packages/nc-gui-v2/pages/projects/index.vue index 898a9230f6..bb3afda953 100644 --- a/packages/nc-gui-v2/pages/projects/index.vue +++ b/packages/nc-gui-v2/pages/projects/index.vue @@ -14,18 +14,19 @@ const navDrawerOptions = [ title: 'My NocoDB', icon: MdiFolderOutline, }, - { - title: 'Shared With Me', - icon: MdiAccountGroup, + /* todo: implement the api and bring back the options below + { + title: "Shared With Me", + icon: MdiAccountGroup }, { - title: 'Recent', - icon: MdiClockOutline, + title: "Recent", + icon: MdiClockOutline }, { - title: 'Starred', - icon: MdiStar, - }, + title: "Starred", + icon: MdiStar + } */ ] const route = useRoute() @@ -73,25 +74,17 @@ const activePage = $ref(navDrawerOptions[0].title)
-