From 173fe88a199f151ff715b442aa1e20860d699cff Mon Sep 17 00:00:00 2001 From: Johannes Kimmel Date: Mon, 24 Apr 2023 12:23:22 +0200 Subject: [PATCH] add placeholder for vlan section name --- l3config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l3config.js b/l3config.js index e448f7c..f5e972f 100644 --- a/l3config.js +++ b/l3config.js @@ -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, ...'}), );