Merge pull request #6055 from TDT-AG/pr/20221026-luci-mod-network

luci-mod-network: remove uppercase for interface name on overview page
This commit is contained in:
Jo-Philipp Wich 2022-10-26 15:39:53 +02:00 committed by GitHub
commit aca4591753
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1199,7 +1199,7 @@ return view.extend({
'class': 'ifacebox-head', 'class': 'ifacebox-head',
'style': firewall.getZoneColorStyle(zone), 'style': firewall.getZoneColorStyle(zone),
'title': zone ? _('Part of zone %q').format(zone.getName()) : _('No zone assigned') 'title': zone ? _('Part of zone %q').format(zone.getName()) : _('No zone assigned')
}, E('strong', net.getName().toUpperCase())), }, E('strong', net.getName())),
E('div', { E('div', {
'class': 'ifacebox-body', 'class': 'ifacebox-body',
'id': '%s-ifc-devices'.format(section_id), 'id': '%s-ifc-devices'.format(section_id),