diff --git a/src/frontend/src/components/tableComponent/components/tableNodeCellRender/index.tsx b/src/frontend/src/components/tableComponent/components/tableNodeCellRender/index.tsx index 1495ff98f..bc912a971 100644 --- a/src/frontend/src/components/tableComponent/components/tableNodeCellRender/index.tsx +++ b/src/frontend/src/components/tableComponent/components/tableNodeCellRender/index.tsx @@ -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) }