From 6f470e0d7603e043f53adc9c6c2c89a3fb5a0476 Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Thu, 27 Oct 2022 10:42:05 +0200 Subject: [PATCH] luci-mod-network: remove uppercase for interface name in modal view Unify the network name display as shown in the overview by removing the uppercase conversion. Signed-off-by: Florian Eckert --- .../htdocs/luci-static/resources/view/network/interfaces.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 416ffb9d17..d5f9060114 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 @@ -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) { -- 2.30.2