Commit 812ecef2 authored by Enrique Alcántara's avatar Enrique Alcántara

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

Fix component option order in on_demand_scans

See merge request gitlab-org/gitlab!51368
parents b0883824 00ebeac1
......@@ -102,6 +102,11 @@ export default {
);
},
},
inject: {
dastSiteValidationDocsPath: {
default: '',
},
},
props: {
helpPagePath: {
type: String,
......@@ -122,11 +127,6 @@ export default {
default: null,
},
},
inject: {
dastSiteValidationDocsPath: {
default: '',
},
},
data() {
const savedScansFields = this.glFeatures.dastSavedScans
? {
......
......@@ -9,13 +9,6 @@ export default {
ProfileSelector,
},
mixins: [glFeatureFlagsMixin()],
props: {
profiles: {
type: Array,
required: false,
default: () => [],
},
},
inject: {
scannerProfilesLibraryPath: {
default: '',
......@@ -24,6 +17,13 @@ export default {
default: '',
},
},
props: {
profiles: {
type: Array,
required: false,
default: () => [],
},
},
computed: {
formattedProfiles() {
return this.profiles.map((profile) => {
......
......@@ -10,13 +10,6 @@ export default {
ProfileSelector,
},
mixins: [glFeatureFlagsMixin()],
props: {
profiles: {
type: Array,
required: false,
default: () => [],
},
},
inject: {
siteProfilesLibraryPath: {
default: '',
......@@ -25,6 +18,13 @@ export default {
default: '',
},
},
props: {
profiles: {
type: Array,
required: false,
default: () => [],
},
},
computed: {
formattedProfiles() {
return this.profiles.map((profile) => {
......
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