luci-mod-network: Evidently hostid was not max 32 bits but 64 bits 🤷
Signed-off-by: Paul Donald <newtwen@gmail.com>
This commit is contained in:
parent
191cd74cc5
commit
ef315b06ce
1 changed files with 2 additions and 2 deletions
|
@ -909,8 +909,8 @@ return view.extend({
|
||||||
|
|
||||||
so = ss.option(form.Value, 'hostid',
|
so = ss.option(form.Value, 'hostid',
|
||||||
_('IPv6-Suffix (hex)'),
|
_('IPv6-Suffix (hex)'),
|
||||||
_('The IPv6 interface identifier (address suffix) as hexadecimal number (max. 8 chars).'));
|
_('The IPv6 interface identifier (address suffix) as hexadecimal number (max. 16 chars).'));
|
||||||
so.datatype = 'and(rangelength(0,8),hexstring)';
|
so.datatype = 'and(rangelength(0,16),hexstring)';
|
||||||
|
|
||||||
so = ss.option(form.DynamicList, 'tag',
|
so = ss.option(form.DynamicList, 'tag',
|
||||||
_('Tag'),
|
_('Tag'),
|
||||||
|
|
Loading…
Reference in a new issue