Skip to content

Commit ae0fc2e

Browse files
committed
Updates the Report Screen to show the correct number of errors, fixed print screen discrepancies.
1 parent 26c6a1e commit ae0fc2e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

assets/js/Components/App.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ export default function App(initialData) {
134134
const processNewReport = (rawReport) => {
135135
const tempReport = analyzeReport(rawReport, ISSUE_STATE)
136136
setReport(tempReport)
137-
console.log(tempReport)
138137

139138
let api = new Api(settings)
140139
api.setReportData(tempReport.id, {'scanCounts': tempReport.scanCounts, 'scanRules': tempReport.scanRules})

assets/js/Components/ReportsPage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export default function ReportsPage({t, report, settings, quickSearchTerm}) {
3838
rules[rule] = {
3939
id: rule,
4040
type: issue.type,
41-
severity: (issue.type == 'error' ? t("filter.label.severity.issue") : t("filter.label.severity.potential")),
41+
severity: (issue.type == 'error' ? t("filter.label.severity.issue_single") : t("filter.label.severity.potential_single")),
4242
active: 0,
4343
resolved: 0,
4444
total: 0

0 commit comments

Comments
 (0)