mirror of https://github.com/aredn/aredn.git
bugfix: Services were not lined up correctly on mesh status page.
Correct services to be correctly lined up. Note: It looks like we need to split the two tables eventually on the mesh status page as the services are pushed to the right. Saving this however to be done in a future release as we may be doing a revamp of this page for sortable fields in the near future and this would fit in with that.
This commit is contained in:
parent
9d0b7d59e1
commit
d6db48fb48
|
@ -426,7 +426,7 @@ if(keys %links)
|
|||
# add advertised dmz hosts
|
||||
foreach $dmzhost (@{$hosts{$ipmain}{hosts}})
|
||||
{
|
||||
$rows{$host} .= "<tr><td valign=top><nobr> <img src='/dot.png'>$dmzhost</nobr></td><td colspan=3></td><td>\n";
|
||||
$rows{$host} .= "<tr><td valign=top><nobr> <img src='/dot.png'>$dmzhost</nobr></td><td colspan=4></td><td>\n";
|
||||
foreach(sort keys %{$services{$dmzhost}}) { $rows{$host} .= $services{$dmzhost}{$_} . "<br>\n" }
|
||||
$rows{$host} .= "</td></tr>\n";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue