Merge pull request #6055 from TDT-AG/pr/20221026-luci-mod-network
authorJo-Philipp Wich <jo@mein.io>
Wed, 26 Oct 2022 13:39:53 +0000 (15:39 +0200)
committerGitHub <noreply@github.com>
Wed, 26 Oct 2022 13:39:53 +0000 (15:39 +0200)
luci-mod-network: remove uppercase for interface name on overview page

modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js

index b88183d51f127661c1dbcff1047b25179e8821cf..416ffb9d17dc6405da69cee73d2ce54e629c58d3 100644 (file)
@@ -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),