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:
Diffstat (limited to 'app/assets/javascripts/pipeline_editor/components/header/pipeline_editor_header.vue')
-rw-r--r--app/assets/javascripts/pipeline_editor/components/header/pipeline_editor_header.vue15
1 files changed, 3 insertions, 12 deletions
diff --git a/app/assets/javascripts/pipeline_editor/components/header/pipeline_editor_header.vue b/app/assets/javascripts/pipeline_editor/components/header/pipeline_editor_header.vue
index 7a35e31e9ce..fefa784f060 100644
--- a/app/assets/javascripts/pipeline_editor/components/header/pipeline_editor_header.vue
+++ b/app/assets/javascripts/pipeline_editor/components/header/pipeline_editor_header.vue
@@ -31,22 +31,18 @@ export default {
},
mixins: [glFeatureFlagsMixin()],
props: {
- ciFileContent: {
- type: String,
- required: true,
- },
ciConfigData: {
type: Object,
required: true,
},
- isCiConfigDataLoading: {
+ isNewCiConfigFile: {
type: Boolean,
required: true,
},
},
computed: {
showPipelineStatus() {
- return this.glFeatures.pipelineStatusForPipelineEditor;
+ return this.glFeatures.pipelineStatusForPipelineEditor && !this.isNewCiConfigFile;
},
// make sure corners are rounded correctly depending on if
// pipeline status is rendered
@@ -61,11 +57,6 @@ export default {
<template>
<div class="gl-mb-5">
<pipeline-status v-if="showPipelineStatus" :class="$options.pipelineStatusClasses" />
- <validation-segment
- :class="validationStyling"
- :loading="isCiConfigDataLoading"
- :ci-file-content="ciFileContent"
- :ci-config="ciConfigData"
- />
+ <validation-segment :class="validationStyling" :ci-config="ciConfigData" />
</div>
</template>