summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/reports/codequality_report/grouped_codequality_reports_app.vue
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/reports/codequality_report/grouped_codequality_reports_app.vue')
-rw-r--r--app/assets/javascripts/reports/codequality_report/grouped_codequality_reports_app.vue18
1 files changed, 0 insertions, 18 deletions
diff --git a/app/assets/javascripts/reports/codequality_report/grouped_codequality_reports_app.vue b/app/assets/javascripts/reports/codequality_report/grouped_codequality_reports_app.vue
index d293165ef2f..3287ba691bf 100644
--- a/app/assets/javascripts/reports/codequality_report/grouped_codequality_reports_app.vue
+++ b/app/assets/javascripts/reports/codequality_report/grouped_codequality_reports_app.vue
@@ -3,7 +3,6 @@ import { mapState, mapActions, mapGetters } from 'vuex';
import { s__, sprintf } from '~/locale';
import { componentNames } from '~/reports/components/issue_body';
import ReportSection from '~/reports/components/report_section.vue';
-import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
import createStore from './store';
export default {
@@ -12,26 +11,12 @@ export default {
components: {
ReportSection,
},
- mixins: [glFeatureFlagsMixin()],
props: {
- headPath: {
- type: String,
- required: true,
- },
- headBlobPath: {
- type: String,
- required: true,
- },
basePath: {
type: String,
required: false,
default: null,
},
- baseBlobPath: {
- type: String,
- required: false,
- default: null,
- },
codequalityReportsPath: {
type: String,
required: false,
@@ -55,9 +40,6 @@ export default {
created() {
this.setPaths({
basePath: this.basePath,
- headPath: this.headPath,
- baseBlobPath: this.baseBlobPath,
- headBlobPath: this.headBlobPath,
reportsPath: this.codequalityReportsPath,
helpPath: this.codequalityHelpPath,
});