Browse Source

fix: Account settings page i18n fix

pull/6897/head
Muhammed Mustafa 11 months ago
parent
commit
b0c723c2ae
  1. 2
      packages/nc-gui/components/account/UserList.vue
  2. 2
      packages/nc-gui/pages/account/index.vue

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

@ -157,7 +157,7 @@ const openDeleteModal = (user: UserType) => {
<template> <template>
<div data-testid="nc-super-user-list" class="h-full"> <div data-testid="nc-super-user-list" class="h-full">
<div class="max-w-195 mx-auto h-full"> <div class="max-w-195 mx-auto h-full">
<div class="text-2xl text-left font-weight-bold mb-4" data-rec="true">{{ $t('title.userManagement') }}</div> <div class="text-2xl text-left font-weight-bold mb-4" data-rec="true">{{ $t('title.userMgmt') }}</div>
<div class="py-2 flex gap-4 items-center justify-between"> <div class="py-2 flex gap-4 items-center justify-between">
<a-input v-model:value="searchText" class="!max-w-90 !rounded-md" placeholder="Search members" @change="loadUsers()"> <a-input v-model:value="searchText" class="!max-w-90 !rounded-md" placeholder="Search members" @change="loadUsers()">
<template #prefix> <template #prefix>

2
packages/nc-gui/pages/account/index.vue

@ -104,7 +104,7 @@ const logout = async () => {
<template #icon> <template #icon>
<MdiAccountSupervisorOutline /> <MdiAccountSupervisorOutline />
</template> </template>
<template #title>Users</template> <template #title>{{ $t('objects.users') }}</template>
<NcMenuItem <NcMenuItem
v-if="isUIAllowed('superAdminUserManagement') && !isEeUI" v-if="isUIAllowed('superAdminUserManagement') && !isEeUI"

Loading…
Cancel
Save