Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/luci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Eckert <fe@dev.tdt.de>2022-10-27 11:42:05 +0300
committerFlorian Eckert <fe@dev.tdt.de>2022-10-27 11:46:54 +0300
commit6f470e0d7603e043f53adc9c6c2c89a3fb5a0476 (patch)
tree6561de438214f0708bcfdd561c94d85391a61a77 /modules
parent32603718e8f81de63ac125554ca73bfa338754a0 (diff)
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 <fe@dev.tdt.de>
Diffstat (limited to 'modules')
-rw-r--r--modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js2
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 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) {