Commit 9a35c4ff authored by David O'Regan's avatar David O'Regan

Merge branch 'fix-vue-order-in-components-test_case_show' into 'master'

Fix component option order in test_case_show

See merge request gitlab-org/gitlab!51376
parents 9943e2ac f6fc632c
...@@ -34,6 +34,7 @@ export default { ...@@ -34,6 +34,7 @@ export default {
IssuableShow, IssuableShow,
TestCaseSidebar, TestCaseSidebar,
}, },
mixins: [TestCaseGraphQL],
inject: [ inject: [
'projectFullPath', 'projectFullPath',
'testCaseNewPath', 'testCaseNewPath',
...@@ -42,7 +43,6 @@ export default { ...@@ -42,7 +43,6 @@ export default {
'descriptionPreviewPath', 'descriptionPreviewPath',
'descriptionHelpPath', 'descriptionHelpPath',
], ],
mixins: [TestCaseGraphQL],
data() { data() {
return { return {
testCase: {}, testCase: {},
......
...@@ -19,6 +19,7 @@ export default { ...@@ -19,6 +19,7 @@ export default {
directives: { directives: {
GlTooltip, GlTooltip,
}, },
mixins: [TestCaseGraphQL],
inject: [ inject: [
'projectFullPath', 'projectFullPath',
'testCaseId', 'testCaseId',
...@@ -28,7 +29,6 @@ export default { ...@@ -28,7 +29,6 @@ export default {
'labelsManagePath', 'labelsManagePath',
'projectsFetchPath', 'projectsFetchPath',
], ],
mixins: [TestCaseGraphQL],
props: { props: {
sidebarExpanded: { sidebarExpanded: {
type: Boolean, type: Boolean,
......
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