Skip to content
Snippets Groups Projects
Unverified Commit 5907eb99 authored by Sean Hatfield's avatar Sean Hatfield Committed by GitHub
Browse files

Make EditWorkspaceUsersModal scrollable (#853)

make EditWorkspaceUsersModal scrollable
parent e0d5d803
No related branches found
No related tags found
No related merge requests found
...@@ -52,7 +52,7 @@ export default function EditWorkspaceUsersModal({ ...@@ -52,7 +52,7 @@ export default function EditWorkspaceUsersModal({
</div> </div>
<form onSubmit={handleUpdate}> <form onSubmit={handleUpdate}>
<div className="p-6 space-y-6 flex h-full w-full"> <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 {users
.filter((user) => user.role !== "admin") .filter((user) => user.role !== "admin")
.map((user) => { .map((user) => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment