Skip to content

Commit

Permalink
Fix filter labels
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Dec 1, 2023
1 parent 61e1baa commit bab5d00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/Grid/configs/adminUsers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -305,14 +305,14 @@ const validFilters: Record<string, ValidFilter<string | boolean | undefined>> =
email: { placeholder: "email", type: String, handler: contains("email"), menuItem: true },
username: { placeholder: "username", type: String, handler: contains("username"), menuItem: true },
deleted: {
placeholder: "Filter on deleted visualizations",
placeholder: "Filter on deleted users",
type: Boolean,
boolType: "is",
handler: equals("deleted", "deleted", toBool),
menuItem: true,
},
purged: {
placeholder: "Filter on purged visualizations",
placeholder: "Filter on purged users",
type: Boolean,
boolType: "is",
handler: equals("purged", "purged", toBool),
Expand Down

0 comments on commit bab5d00

Please sign in to comment.