luci-mod-network: remove uppercase for interface name in modal view
authorFlorian Eckert <fe@dev.tdt.de>
Thu, 27 Oct 2022 08:42:05 +0000 (10:42 +0200)
committerFlorian Eckert <fe@dev.tdt.de>
Thu, 27 Oct 2022 08:46:54 +0000 (10:46 +0200)
Unify the network name display as shown in the overview by removing the
uppercase conversion.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js

index 416ffb9d17dc6405da69cee73d2ce54e629c58d3..d5f9060114958d05b53846e4c27628ecad505b5c 100644 (file)
@@ -488,7 +488,7 @@ return view.extend({
                };
 
                s.modaltitle = function(section_id) {
-                       return _('Interfaces') + ' » ' + section_id.toUpperCase();
+                       return _('Interfaces') + ' » ' + section_id;
                };
 
                s.renderRowActions = function(section_id) {