fix possible invalid value
This commit is contained in:
parent
20ccc62cf0
commit
4d0632d788
|
|
@ -267,7 +267,7 @@ function read_value(it) {
|
|||
}
|
||||
if (text.value.length) value.push(text);
|
||||
|
||||
if (value.length) {
|
||||
if (value.length && value[0].value) {
|
||||
value[0].value = value[0].value.trimLeft();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue