mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-03-16 07:02:22 +00:00
Make EditWorkspaceUsersModal scrollable (#853)
make EditWorkspaceUsersModal scrollable
This commit is contained in:
parent
e0d5d8039a
commit
5907eb9939
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ export default function EditWorkspaceUsersModal({
|
|||
</div>
|
||||
<form onSubmit={handleUpdate}>
|
||||
<div className="p-6 space-y-6 flex h-full w-full">
|
||||
<div className="w-full flex flex-col gap-y-4">
|
||||
<div className="w-full flex flex-col gap-y-4 max-h-[350px] overflow-y-scroll">
|
||||
{users
|
||||
.filter((user) => user.role !== "admin")
|
||||
.map((user) => {
|
||||
|
|
Loading…
Add table
Reference in a new issue