Update styling in the entity issues list

This commit is contained in:
Quincy Morgan
2018-12-20 14:49:35 -05:00
parent 99e5a52bc9
commit 026597017a
2 changed files with 20 additions and 6 deletions

View File

@@ -53,7 +53,8 @@ export function uiEntityIssues(context) {
});
var label = enter
.append('label');
.append('button')
.classed('label', true);
label.each(function(d) {
var iconSuffix = d.severity === 'warning' ? 'alert' : 'error';
@@ -66,6 +67,7 @@ export function uiEntityIssues(context) {
label
.append('span')
.append('strong')
.text(function(d) { return d.message; });
// Update