add placeholder for vlan section name

This commit is contained in:
Johannes Kimmel 2023-04-24 12:23:22 +02:00
parent 9b7415dcae
commit 173fe88a19
1 changed files with 1 additions and 1 deletions

View File

@ -347,7 +347,7 @@ function initForm() {
]),
));
l3cfg.addSection(new L3MultiSection('VLAN', function(idsuffix) {
return new L3Section('vlan', makeInput('vlanSectionName'+idsuffix, {type: 'number', min: 1, max: 4094, required: ''}),
return new L3Section('vlan', makeInput('vlanSectionName'+idsuffix, {type: 'number', min: 1, max: 4094, required: '', placeholder: '1..4094'}),
new L3Input('Comment','vlanComment'+idsuffix, 'comment', {type: 'text'}, ['client', 'wan']),
new L3Input('Ports','vlanPorts'+idsuffix, 'ports', {type: 'text', placeholder: 'eth0:*, eth1.4:u, ...'}),
);