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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-01-17 21:16:07 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-01-17 21:16:07 +0300
commitd409d12963ae433979c54a8ba54f3a1dd4455e52 (patch)
tree25da3ed9d7cacbb38539c3682fae8827903ec9af /app/assets/javascripts/work_items
parent8432be20de0a29f4dde4980efe37d013c9e90034 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/work_items')
-rw-r--r--app/assets/javascripts/work_items/constants.js49
1 files changed, 0 insertions, 49 deletions
diff --git a/app/assets/javascripts/work_items/constants.js b/app/assets/javascripts/work_items/constants.js
index 6b72c89bb29..995c02a2c5b 100644
--- a/app/assets/javascripts/work_items/constants.js
+++ b/app/assets/javascripts/work_items/constants.js
@@ -1,54 +1,5 @@
-import { __ } from '~/locale';
-
export const widgetTypes = {
title: 'TITLE',
};
export const WI_TITLE_TRACK_LABEL = 'item_title';
-
-export const workItemTypes = {
- EPIC: {
- title: __('Epic'),
- icon: 'epic',
- color: '#694CC0',
- backgroundColor: '#E1D8F9',
- },
- ISSUE: {
- title: __('Issue'),
- icon: 'issues',
- color: '#1068BF',
- backgroundColor: '#CBE2F9',
- },
- TASK: {
- title: __('Task'),
- icon: 'task-done',
- color: '#217645',
- backgroundColor: '#C3E6CD',
- },
- INCIDENT: {
- title: __('Incident'),
- icon: 'issue-type-incident',
- backgroundColor: '#db2a0f',
- color: '#FDD4CD',
- iconSize: 16,
- },
- SUB_EPIC: {
- title: __('Child epic'),
- icon: 'epic',
- color: '#AB6100',
- backgroundColor: '#F5D9A8',
- },
- REQUIREMENT: {
- title: __('Requirement'),
- icon: 'requirements',
- color: '#0068c5',
- backgroundColor: '#c5e3fb',
- },
- TEST_CASE: {
- title: __('Test case'),
- icon: 'issue-type-test-case',
- backgroundColor: '#007a3f',
- color: '#bae8cb',
- iconSize: 16,
- },
-};