Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/filtered_search/project_artifacts_filtered_search_token_keys.js')
-rw-r--r--app/assets/javascripts/filtered_search/project_artifacts_filtered_search_token_keys.js12
1 files changed, 2 insertions, 10 deletions
diff --git a/app/assets/javascripts/filtered_search/project_artifacts_filtered_search_token_keys.js b/app/assets/javascripts/filtered_search/project_artifacts_filtered_search_token_keys.js
index f9c64182941..30c1cf89581 100644
--- a/app/assets/javascripts/filtered_search/project_artifacts_filtered_search_token_keys.js
+++ b/app/assets/javascripts/filtered_search/project_artifacts_filtered_search_token_keys.js
@@ -1,16 +1,8 @@
import FilteredSearchTokenKeys from './filtered_search_token_keys';
const tokenKeys = [
- {
- key: 'deleted-branches',
- type: 'string',
- param: 'deleted-branches',
- symbol: '',
- icon: 'tag',
- tag: 'Yes or No', // eslint-disable-line @gitlab/i18n/no-non-i18n-strings
- lowercaseValueOnSubmit: true,
- capitalizeTokenValue: true,
- },
+ // Currently, no filtering is implemented. This will be fixed in future iterations.
+ // See https://gitlab.com/gitlab-org/gitlab-ce/issues/48862 for more information.
];
const ProjectArtifactsFilteredSearchTokenKeys = new FilteredSearchTokenKeys(tokenKeys);