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.vue16
1 files changed, 16 insertions, 0 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 3287ba691bf..e568950380e 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
@@ -12,11 +12,24 @@ export default {
ReportSection,
},
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,
@@ -40,6 +53,9 @@ export default {
created() {
this.setPaths({
basePath: this.basePath,
+ headPath: this.headPath,
+ baseBlobPath: this.baseBlobPath,
+ headBlobPath: this.headBlobPath,
reportsPath: this.codequalityReportsPath,
helpPath: this.codequalityHelpPath,
});