fix: settings/organization/members table filtering issue (#11313)

pull/11382/head
Somay Chauhan 2023-09-15 17:20:40 +05:30 committed by GitHub
parent 41812bb280
commit 768a3132fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ export function UserListTable() {
<Badge
variant={role === "MEMBER" ? "gray" : "blue"}
onClick={() => {
table.getColumn("role")?.setFilterValue(role);
table.getColumn("role")?.setFilterValue([role]);
}}>
{role}
</Badge>