fix: only show search if users are more than 10

This commit is contained in:
Shariq Ansari 2025-06-24 15:36:54 +05:30
parent 1c3ee8b557
commit ec6b1558b1

View File

@ -63,7 +63,10 @@
class="flex flex-col overflow-hidden"
v-if="!users.loading && users.data?.crmUsers?.length > 1"
>
<div class="flex items-center justify-between mb-4">
<div
v-if="users.data?.crmUsers?.length > 10"
class="flex items-center justify-between mb-4"
>
<TextInput
ref="searchRef"
v-model="search"