Merge pull request #962 from frappe/mergify/bp/main/pr-960

fix: Make User page header sticky (backport #960)
This commit is contained in:
Shariq Ansari 2025-06-24 12:13:11 +05:30 committed by GitHub
commit a17a702dac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -59,7 +59,10 @@
</div> </div>
<!-- Users List --> <!-- Users List -->
<div v-if="!users.loading && users.data?.crmUsers?.length > 1"> <div
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 class="flex items-center justify-between mb-4">
<TextInput <TextInput
ref="searchRef" ref="searchRef"
@ -83,7 +86,7 @@
]" ]"
/> />
</div> </div>
<ul class="divide-y divide-outline-gray-modals overflow-auto"> <ul class="divide-y divide-outline-gray-modals overflow-y-auto">
<template v-for="user in usersList" :key="user.name"> <template v-for="user in usersList" :key="user.name">
<li class="flex items-center justify-between py-2"> <li class="flex items-center justify-between py-2">
<div class="flex items-center"> <div class="flex items-center">