Allow including null in number/range variables
This commit is contained in:
parent
7d533d4d4a
commit
d136fdbafa
|
@ -222,7 +222,7 @@ var usercss = (() => {
|
||||||
if (Array.isArray(state.value) && state.value.length) {
|
if (Array.isArray(state.value) && state.value.length) {
|
||||||
// label may be placed anywhere
|
// label may be placed anywhere
|
||||||
result.units = (state.value.find(i => typeof i === 'string') || '').replace(/[\d.+-]/g, '');
|
result.units = (state.value.find(i => typeof i === 'string') || '').replace(/[\d.+-]/g, '');
|
||||||
const range = state.value.filter(i => typeof i === 'number');
|
const range = state.value.filter(i => typeof i === 'number' || i == null);
|
||||||
result.default = range[0];
|
result.default = range[0];
|
||||||
result.min = range[1];
|
result.min = range[1];
|
||||||
result.max = range[2];
|
result.max = range[2];
|
||||||
|
|
Loading…
Reference in New Issue
Block a user