/netdb: Fix UI bug with unpublished LeaseSets

This commit is contained in:
str4d
2017-06-12 13:04:27 +00:00
parent cf7a6041b3
commit 3e4318cca6
2 changed files with 2 additions and 1 deletions

View File

@@ -327,7 +327,7 @@ class NetDbRenderer {
if (!unpublished) { if (!unpublished) {
host = _context.namingService().reverseLookup(dest); host = _context.namingService().reverseLookup(dest);
} }
if (host != null) { if (unpublished || host != null) {
buf.append(" colspan=\"2\""); buf.append(" colspan=\"2\"");
} }
buf.append(">"); buf.append(">");

View File

@@ -9,6 +9,7 @@
center to separator for multi-value rows) center to separator for multi-value rows)
- Enhance presentation of tables on /tunnels (reliable alignment of mixed - Enhance presentation of tables on /tunnels (reliable alignment of mixed
content in rows, more prominence to bandwidth tiers) content in rows, more prominence to bandwidth tiers)
- /netdb: Fix UI bug with unpublished LeaseSets
* I2PSnark: * I2PSnark:
- Usability: add tabindex="0" to screenlog - Usability: add tabindex="0" to screenlog
- Update navbar link classes to allow easier targetting of button type - Update navbar link classes to allow easier targetting of button type