bugfix load context info of fields (#390)
parent
a589941a30
commit
b2c5f894ec
|
@ -531,7 +531,7 @@ const panel = {
|
|||
})
|
||||
|
||||
// request context info field
|
||||
if (!isEmptyValue(field.value) && !isEmptyValue(field.contextInfo) && !isEmptyValue(field.contextInfo.sqlStatement)) {
|
||||
if ((!isEmptyValue(field.value) || !isEmptyValue(newValue)) && !isEmptyValue(field.contextInfo) && !isEmptyValue(field.contextInfo.sqlStatement)) {
|
||||
var isSQL = false
|
||||
var sqlStatement = field.contextInfo.sqlStatement
|
||||
if (sqlStatement.includes('@')) {
|
||||
|
|
Loading…
Reference in New Issue