-
Notifications
You must be signed in to change notification settings - Fork 731
Add multi-select filter in organizations page for Headcount #1433
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
Changes from 3 commits
3550e33
912d2b6
6726e7d
6f10d0f
db358b1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,6 +23,10 @@ const options: MultiSelectFilterOptionGroup[] = [ | |
| label: '501-1000', | ||
| value: '501-1000', | ||
| }, | ||
| { | ||
| label: '> 1000', | ||
| value: '1000+', | ||
| }, | ||
|
Comment on lines
+26
to
+37
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The issue scoping was not completely ok. Instead of this new selection item, can you add support for instead? Apologies for the confusion
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
| ], | ||
| }, | ||
| ]; | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here it needs to be:
Otherwise API returns 500
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done