Commit a388ac78 authored by peterhegman's avatar peterhegman

Fix `Enterprise` filter token labels

After submitting `Enterprise` filter the token label says `true` or
`false` instead of `Yes` or `No`. This commit fixes that.
parent 3cab3f39
...@@ -17,8 +17,8 @@ export const FILTERED_SEARCH_TOKEN_ENTERPRISE = { ...@@ -17,8 +17,8 @@ export const FILTERED_SEARCH_TOKEN_ENTERPRISE = {
unique: true, unique: true,
operators: OPERATOR_IS_ONLY, operators: OPERATOR_IS_ONLY,
options: [ options: [
{ value: true, title: __('Yes') }, { value: 'true', title: __('Yes') },
{ value: false, title: __('No') }, { value: 'false', title: __('No') },
], ],
requiredPermissions: 'canFilterByEnterprise', requiredPermissions: 'canFilterByEnterprise',
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment