Commit f7fc4d04 authored by Filipa Lacerda's avatar Filipa Lacerda

Revert store changes

Add changelog
parent 87a6364f
---
title: Update UI for merge widget reports
merge_request:
author:
type: changed
...@@ -6,9 +6,6 @@ export default class MergeRequestStore extends CEMergeRequestStore { ...@@ -6,9 +6,6 @@ export default class MergeRequestStore extends CEMergeRequestStore {
super(data); super(data);
this.initCodeclimate(data); this.initCodeclimate(data);
this.initPerformanceReport(data); this.initPerformanceReport(data);
this.initSecurityReports(data);
this.initSecurityReport(data); this.initSecurityReport(data);
this.initDockerReport(data); this.initDockerReport(data);
this.initDastReport(data); this.initDastReport(data);
...@@ -63,27 +60,6 @@ export default class MergeRequestStore extends CEMergeRequestStore { ...@@ -63,27 +60,6 @@ export default class MergeRequestStore extends CEMergeRequestStore {
degraded: [], degraded: [],
}; };
} }
// TODO - blob paths and head & base for sast
initSecurityReports(data) {
this.securityReports = {
fixed: null,
approved: null,
sast: {
path: data.sast,
issues: [],
},
sastContainer: {
path: data.sast_container,
approved: [],
unapproved: [],
vulnerabilities: [],
},
dast: {
path: data.dast,
issues: [],
},
};
}
initSecurityReport(data) { initSecurityReport(data) {
this.sast = data.sast; this.sast = data.sast;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment