@@ -13,8 +13,6 @@ export default function IssuesTable({
1313 { id : "label" , text : t ( 'report.header.issue_type' ) } ,
1414 { id : "type" , text : t ( 'report.header.severity' ) } ,
1515 { id : "active" , text : t ( 'report.header.active' ) , alignText : 'center' } ,
16- // { id: "fixed", text: t('report.header.fixed'), alignText: 'center' },
17- // { id: "resolved", text: t('report.header.resolved'), alignText: 'center' },
1816 { id : "handled" , text : t ( 'report.header.handled' ) , alignText : 'center' }
1917 ]
2018
@@ -91,13 +89,13 @@ export default function IssuesTable({
9189 if ( ! labels . includes ( issue . label ) ) {
9290 labels . push ( issue . label )
9391 if ( issue . type === 'error' || issue . type === 'issue' ) {
94- issue . type = t ( 'report.header.issues ' )
92+ issue . type = t ( 'filter.label.severity.issue ' )
9593 }
9694 else if ( issue . type === 'potential' ) {
97- issue . type = t ( 'report.header .potential' )
95+ issue . type = t ( 'filter.label.severity .potential' )
9896 }
9997 else if ( issue . type === 'suggestion' ) {
100- issue . type = t ( 'report.header.suggestions ' )
98+ issue . type = t ( 'filter.label.severity.suggestion ' )
10199 }
102100 issue . handled = ( issue . fixed + issue . resolved > 0 ? 1 : 0 )
103101 mergedIssues . push ( issue )
0 commit comments