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:
parent
32603718e8
commit
6f470e0d76
1 changed files with 1 additions and 1 deletions
|
@ -488,7 +488,7 @@ return view.extend({
|
||||||
};
|
};
|
||||||
|
|
||||||
s.modaltitle = function(section_id) {
|
s.modaltitle = function(section_id) {
|
||||||
return _('Interfaces') + ' » ' + section_id.toUpperCase();
|
return _('Interfaces') + ' » ' + section_id;
|
||||||
};
|
};
|
||||||
|
|
||||||
s.renderRowActions = function(section_id) {
|
s.renderRowActions = function(section_id) {
|
||||||
|
|
Loading…
Reference in a new issue