diff options
Diffstat (limited to 'applications/luci-olsr/luasrc/view/status-olsr/topology.htm')
-rw-r--r-- | applications/luci-olsr/luasrc/view/status-olsr/topology.htm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-olsr/luasrc/view/status-olsr/topology.htm b/applications/luci-olsr/luasrc/view/status-olsr/topology.htm index 3e7f7596dd..bc699b23c0 100644 --- a/applications/luci-olsr/luasrc/view/status-olsr/topology.htm +++ b/applications/luci-olsr/luasrc/view/status-olsr/topology.htm @@ -15,7 +15,7 @@ $Id$ <%+header%> <h1><%:olsr_topology%></h1> <br /> -<table cellspacing="0" cellpadding="6"> +<table class="smalltext" cellspacing="0" cellpadding="6"> <tr> <th><%:destination%></th> <th><%:olsr_lasthop%></th> @@ -33,7 +33,7 @@ $Id$ <td><a href="http://<%=route["Last hop IP"]%>"><%=route["Last hop IP"]%></a></td> <td><%=route.LQ%></td> <td><%=route.ILQ%></td> -<td><%=route.ETX%></td> +<td><%=string.format("%%.3f", tonumber(route.ETX) or 0)%></td> </tr> <% end %> </table> |