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>2020-01-15 03:09:05 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-01-15 03:09:05 +0300
commitc9bd888d38746a9bb73629681d8c393c3ec77275 (patch)
tree776e4a8cff1dc6b407c39189040ec0e556aa312c /spec/javascripts/vue_shared
parent0b12a5312c9701fbfed25fbb334d47900ced736b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/javascripts/vue_shared')
-rw-r--r--spec/javascripts/vue_shared/components/issue/related_issuable_mock_data.js13
1 files changed, 8 insertions, 5 deletions
diff --git a/spec/javascripts/vue_shared/components/issue/related_issuable_mock_data.js b/spec/javascripts/vue_shared/components/issue/related_issuable_mock_data.js
index 26bfdd7551e..92080cb9bd5 100644
--- a/spec/javascripts/vue_shared/components/issue/related_issuable_mock_data.js
+++ b/spec/javascripts/vue_shared/components/issue/related_issuable_mock_data.js
@@ -6,40 +6,43 @@ export const defaultProps = {
export const issuable1 = {
id: 200,
- epic_issue_id: 1,
+ epicIssueId: 1,
confidential: false,
reference: 'foo/bar#123',
displayReference: '#123',
title: 'some title',
path: '/foo/bar/issues/123',
state: 'opened',
+ linkType: 'relates_to',
};
export const issuable2 = {
id: 201,
- epic_issue_id: 2,
+ epicIssueId: 2,
confidential: false,
reference: 'foo/bar#124',
displayReference: '#124',
title: 'some other thing',
path: '/foo/bar/issues/124',
state: 'opened',
+ linkType: 'blocks',
};
export const issuable3 = {
id: 202,
- epic_issue_id: 3,
+ epicIssueId: 3,
confidential: false,
reference: 'foo/bar#125',
displayReference: '#125',
title: 'some other other thing',
path: '/foo/bar/issues/125',
state: 'opened',
+ linkType: 'is_blocked_by',
};
export const issuable4 = {
id: 203,
- epic_issue_id: 4,
+ epicIssueId: 4,
confidential: false,
reference: 'foo/bar#126',
displayReference: '#126',
@@ -50,7 +53,7 @@ export const issuable4 = {
export const issuable5 = {
id: 204,
- epic_issue_id: 5,
+ epicIssueId: 5,
confidential: false,
reference: 'foo/bar#127',
displayReference: '#127',