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>
This commit is contained in:
Florian Eckert 2022-10-27 10:42:05 +02:00
parent 32603718e8
commit 6f470e0d76

View 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) {