Browse Source

fix(nc-gui): members empty state translation issue (#8401)

pull/8405/head
Ramesh Mane 6 months ago committed by GitHub
parent
commit
14065f60f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      packages/nc-gui/components/project/AccessSettings.vue

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

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

Loading…
Cancel
Save