Browse Source

fix: rolePermissions in lib/types.ts file is imported from wrong file

pull/7173/head
Ramesh Mane 8 months ago
parent
commit
bb7d4e14da
  1. 4
      packages/nc-gui/lib/types.ts

4
packages/nc-gui/lib/types.ts

@ -3,7 +3,7 @@ import type { I18n } from 'vue-i18n'
import type { Theme as AntTheme } from 'ant-design-vue/es/config-provider'
import type { UploadFile } from 'ant-design-vue'
import type { ImportSource, ImportType, TabType } from './enums'
import type { rolePermissions } from './constants'
import type { rolePermissions } from './acl'
interface User {
id: string
@ -176,7 +176,7 @@ interface SidebarTableNode extends TableType {
isViewsLoading?: boolean
}
export {
export type {
User,
ProjectMetaInfo,
Field,

Loading…
Cancel
Save