Skip to content

Commit cd0214b

Browse files
committed
prettify-status.pl: also toggle warnings by org
1 parent 5932faa commit cd0214b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

prettify-status.pl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,10 @@ ($$)
126126
my $rowIndex = 0;
127127
my $rowCount = @warnings;
128128
for my $row (@warnings) {
129+
my $org = $row->{org};
129130
my $line = $row->{line};
130131
my $rowClass = rowClass($rowIndex++, $rowCount);
131-
print "<li class=\"$rowClass\">\n$line\n</li>\n";
132+
print "<li class=\"$org $rowClass\">\n$line\n</li>\n";
132133
}
133134
print "</ul>\n";
134135
print "</div>\n\n";

0 commit comments

Comments
 (0)