Commit 40c5b0e0 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch '356053-enterprise-filter-token-label-says-true-false-instead-of-yes-no' into 'master'

Fix `Enterprise` filter token labels

See merge request gitlab-org/gitlab!83031
parents 321871fc a388ac78
...@@ -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