From f06bc871dca6a1ff142ac1d3b67b938c19ef9697 Mon Sep 17 00:00:00 2001 From: Ilia Ross Date: Fri, 31 May 2024 12:13:33 +0300 Subject: [PATCH] Fix to break each icon to a new line --- status/index.cgi | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/status/index.cgi b/status/index.cgi index 130b62aba..027fb12cd 100755 --- a/status/index.cgi +++ b/status/index.cgi @@ -160,9 +160,10 @@ foreach $s (@_) { $h = $remotes[$i]; $h = $text{'index_local'} if ($h eq '*'); push(@icons, ""); + " title='".&html_escape($h)."'". + " style='padding: 0.25em 0'>"); } - push(@cols, join("", @icons)); + push(@cols, join("
", @icons)); } if ($access{'edit'}) { print &ui_checked_columns_row(\@cols, \@tds, "d", $s->{'id'});