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

tag_token_config.js « search_tokens « components « runner « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fdeba7143851fcd6c474f0a3374c9c9dfb1604f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { s__ } from '~/locale';
import { OPERATOR_IS_ONLY } from '~/vue_shared/components/filtered_search_bar/constants';
import { PARAM_KEY_TAG } from '../../constants';
import TagToken from './tag_token.vue';

export const tagTokenConfig = {
  icon: 'tag',
  title: s__('Runners|Tags'),
  type: PARAM_KEY_TAG,
  token: TagToken,
  operators: OPERATOR_IS_ONLY,
};