diff options
author | Florian Eckert <fe@dev.tdt.de> | 2022-10-26 12:04:52 +0200 |
---|---|---|
committer | Florian Eckert <fe@dev.tdt.de> | 2022-10-26 12:10:31 +0200 |
commit | 5ffaf478424897e856c290b1bc32d6c3221ee04c (patch) | |
tree | 408eb51f38ef0b8502a5591675e88b52f45dbdbf /modules/luci-mod-network/htdocs/luci-static/resources/view | |
parent | 3ec7bff0d1f213b827943b8797309025f4d178f3 (diff) |
luci-mod-network: remove uppercase for interface name on overview page
In the overview page, the name of the interface is converted to
uppercase. However, this is not the name in the configuration. From my
point of view, this makes no sense. The name displayed should correspond
exactly to the name in the configuration.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
Diffstat (limited to 'modules/luci-mod-network/htdocs/luci-static/resources/view')
-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), |