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('|')
|
||||
return {
|
||||
name: name.substring(2),
|
||||
valType: valType.trim(),
|
||||
value: valVal.trim()
|
||||
valType: valType?.trim(),
|
||||
value: valVal?.trim()
|
||||
}
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in a new issue