8000 fix: Make User page header sticky (backport #960) by mergify[bot] · Pull Request #962 · frappe/crm · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix: Make User page header sticky (backport #960) #962

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions frontend/src/components/Settings/Users.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@
</div>

<!-- 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">
<TextInput
ref="searchRef"
Expand All @@ -83,7 +86,7 @@
]"
/>
</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">
<li class="flex items-center justify-between py-2">
<div class="flex items-center">
Expand Down
0