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/ci_lint/components/ci_lint.vue')
-rw-r--r--app/assets/javascripts/ci_lint/components/ci_lint.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/assets/javascripts/ci_lint/components/ci_lint.vue b/app/assets/javascripts/ci_lint/components/ci_lint.vue
index 9a55177b15f..ced07dea7be 100644
--- a/app/assets/javascripts/ci_lint/components/ci_lint.vue
+++ b/app/assets/javascripts/ci_lint/components/ci_lint.vue
@@ -32,7 +32,7 @@ export default {
return {
content: '',
loading: false,
- valid: false,
+ isValid: false,
errors: null,
warnings: null,
jobs: [],
@@ -61,7 +61,7 @@ export default {
});
this.showingResults = true;
- this.valid = valid;
+ this.isValid = valid;
this.errors = errors;
this.warnings = warnings;
this.jobs = jobs;
@@ -120,7 +120,7 @@ export default {
<ci-lint-results
v-if="showingResults"
class="col-sm-12 gl-mt-5"
- :valid="valid"
+ :is-valid="isValid"
:jobs="jobs"
:errors="errors"
:warnings="warnings"