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>2023-01-03 09:07:23 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-01-03 09:07:23 +0300
commit3d6bfb323c80f30034921103df18cbc2a266fc19 (patch)
treea48b58a79685114848879011dd89be0b33124081 /app/assets/javascripts/ide
parentcd6db2c5b462479bf7d798acaf1f360def701c15 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/ide')
-rw-r--r--app/assets/javascripts/ide/components/repo_editor.vue4
1 files changed, 1 insertions, 3 deletions
diff --git a/app/assets/javascripts/ide/components/repo_editor.vue b/app/assets/javascripts/ide/components/repo_editor.vue
index 3c9c0b1ade1..b95f8bb5acb 100644
--- a/app/assets/javascripts/ide/components/repo_editor.vue
+++ b/app/assets/javascripts/ide/components/repo_editor.vue
@@ -27,7 +27,6 @@ import { performanceMarkAndMeasure } from '~/performance/utils';
import ContentViewer from '~/vue_shared/components/content_viewer/content_viewer.vue';
import { viewerInformationForPath } from '~/vue_shared/components/content_viewer/lib/viewer_utils';
import DiffViewer from '~/vue_shared/components/diff_viewer/diff_viewer.vue';
-import glFeatureFlagMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
import {
leftSidebarViews,
viewerTypes,
@@ -55,7 +54,6 @@ export default {
DiffViewer,
FileTemplatesBar,
},
- mixins: [glFeatureFlagMixin()],
props: {
file: {
type: Object,
@@ -474,7 +472,7 @@ export default {
this.editor.registerCiSchema();
};
- if (this.isCiConfigFile && this.glFeatures.schemaLinting) {
+ if (this.isCiConfigFile) {
registerLocalSchema();
} else {
if (this.CiSchemaExtension) {