fix variables crashing the tab
This commit is contained in:
parent
10aa5755a4
commit
86900061c2
|
@ -540,8 +540,8 @@ export default {
|
||||||
const [valType, valVal] = value.split('|')
|
const [valType, valVal] = value.split('|')
|
||||||
return {
|
return {
|
||||||
name: name.substring(2),
|
name: name.substring(2),
|
||||||
valType: valType.trim(),
|
valType: valType?.trim(),
|
||||||
value: valVal.trim()
|
value: valVal?.trim()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue