Browse Source

fix(nc-gui): Translation issue - Search members (#8433)

pull/8445/head
Chavy 2 months ago committed by GitHub
parent
commit
db08da11a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 7
      packages/nc-gui/components/account/UserList.vue

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

@ -170,7 +170,12 @@ const openDeleteModal = (user: UserType) => {
<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.userMgmt') }}</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="$t('title.searchMembers')"
@change="loadUsers()"
>
<template #prefix> <template #prefix>
<PhMagnifyingGlassBold class="!h-3.5 text-gray-500" /> <PhMagnifyingGlassBold class="!h-3.5 text-gray-500" />
</template> </template>

Loading…
Cancel
Save