bugfix: fix crashing langflow when keypairlistcomponent advanced opens (#2462)
This commit is contained in:
parent
e8517e067a
commit
f70106aaec
1 changed files with 1 additions and 1 deletions
|
|
@ -141,7 +141,7 @@ export default function TableNodeCellRender({
|
|||
disabled={disabled}
|
||||
editNode={true}
|
||||
value={
|
||||
Object.keys(templateValue)?.length === 0 || !templateValue
|
||||
Object.keys(templateValue || {})?.length === 0 || !templateValue
|
||||
? [{ "": "" }]
|
||||
: convertObjToArray(templateValue, templateData.type)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue