Fix to break each icon to a new line

This commit is contained in:
Ilia Ross
2024-05-31 12:13:33 +03:00
parent 45e16aeeac
commit f06bc871dc

View File

@@ -160,9 +160,10 @@ foreach $s (@_) {
$h = $remotes[$i];
$h = $text{'index_local'} if ($h eq '*');
push(@icons, "<img src=".&get_status_icon($up).
" title='".&html_escape($h)."'>");
" title='".&html_escape($h)."'".
" style='padding: 0.25em 0'>");
}
push(@cols, join("", @icons));
push(@cols, join("<br>", @icons));
}
if ($access{'edit'}) {
print &ui_checked_columns_row(\@cols, \@tds, "d", $s->{'id'});