diff options
author | Jo-Philipp Wich <jo@mein.io> | 2022-10-26 15:39:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 15:39:53 +0200 |
commit | aca4591753d9c94c139268923c2323070f79e659 (patch) | |
tree | 329b5d2ba514c9626971bb9df176dac7ddef0a5e | |
parent | 81f204d38f089ce6114bd67659c72e07ffbd57b4 (diff) | |
parent | 5ffaf478424897e856c290b1bc32d6c3221ee04c (diff) |
Merge pull request #6055 from TDT-AG/pr/20221026-luci-mod-network
luci-mod-network: remove uppercase for interface name on overview page
-rw-r--r-- | modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js index b88183d51f..416ffb9d17 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js @@ -1199,7 +1199,7 @@ return view.extend({ 'class': 'ifacebox-head', 'style': firewall.getZoneColorStyle(zone), 'title': zone ? _('Part of zone %q').format(zone.getName()) : _('No zone assigned') - }, E('strong', net.getName().toUpperCase())), + }, E('strong', net.getName())), E('div', { 'class': 'ifacebox-body', 'id': '%s-ifc-devices'.format(section_id), |