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>2021-03-23 00:08:59 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-03-23 00:08:59 +0300
commitb489f0f0a1ebcea2044911b7b38837f072b7ee05 (patch)
tree5fba06eec9bda781dd1000cb322ed883f4692c04 /app/assets/javascripts/pipeline_editor/pipeline_editor_home.vue
parent9a643ab892cfd7897fb7695bc158ce17ada81b1a (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/pipeline_editor/pipeline_editor_home.vue')
-rw-r--r--app/assets/javascripts/pipeline_editor/pipeline_editor_home.vue11
1 files changed, 1 insertions, 10 deletions
diff --git a/app/assets/javascripts/pipeline_editor/pipeline_editor_home.vue b/app/assets/javascripts/pipeline_editor/pipeline_editor_home.vue
index ef46040153f..0eba8696f7b 100644
--- a/app/assets/javascripts/pipeline_editor/pipeline_editor_home.vue
+++ b/app/assets/javascripts/pipeline_editor/pipeline_editor_home.vue
@@ -19,10 +19,6 @@ export default {
type: String,
required: true,
},
- isCiConfigDataLoading: {
- type: Boolean,
- required: true,
- },
},
data() {
return {
@@ -44,15 +40,10 @@ export default {
<template>
<div>
- <pipeline-editor-header
- :ci-file-content="ciFileContent"
- :ci-config-data="ciConfigData"
- :is-ci-config-data-loading="isCiConfigDataLoading"
- />
+ <pipeline-editor-header :ci-config-data="ciConfigData" />
<pipeline-editor-tabs
:ci-config-data="ciConfigData"
:ci-file-content="ciFileContent"
- :is-ci-config-data-loading="isCiConfigDataLoading"
v-on="$listeners"
@set-current-tab="setCurrentTab"
/>