Browse Source

fix(nc-gui): Failed to resolve component - Empty

pull/7491/head
Ramesh Mane 7 months ago
parent
commit
b88f63d90a
  1. 2
      packages/nc-gui/components/account/UserMenu.vue
  2. 2
      packages/nc-gui/components/project/AccessSettings.vue

2
packages/nc-gui/components/account/UserMenu.vue

@ -4,7 +4,7 @@ import type { UsersSortType } from '~/lib'
const { field, direction, handleUserSort } = defineProps<{
field: UsersSortType['field']
direction: UsersSortType['direction']
direction?: UsersSortType['direction']
handleUserSort: Function
}>()

2
packages/nc-gui/components/project/AccessSettings.vue

@ -156,7 +156,7 @@ onMounted(async () => {
v-else-if="!filteredCollaborators?.length"
class="nc-collaborators-list w-full h-full flex flex-col items-center justify-center mt-36"
>
<Empty description="$t('title.noMembersFound')" />
<a-empty description="$t('title.noMembersFound')" />
</div>
<div v-else class="nc-collaborators-list mt-6 h-full">
<div class="flex flex-col rounded-lg overflow-hidden border-1 max-w-350 max-h-[calc(100%-8rem)]">

Loading…
Cancel
Save