mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-29 03:01:10 +03:00
Unable to view upsert history dialog, when InMemoryVector Store is used (#2182)
check for presence of paramValues
This commit is contained in:
@@ -157,11 +157,13 @@ function UpsertHistoryRow(props) {
|
|||||||
</div>
|
</div>
|
||||||
</AccordionSummary>
|
</AccordionSummary>
|
||||||
<AccordionDetails>
|
<AccordionDetails>
|
||||||
<TableViewOnly
|
{node.paramValues[0] && (
|
||||||
sx={{ minWidth: 150 }}
|
<TableViewOnly
|
||||||
rows={node.paramValues}
|
sx={{ minWidth: 150 }}
|
||||||
columns={Object.keys(node.paramValues[0])}
|
rows={node.paramValues}
|
||||||
/>
|
columns={Object.keys(node.paramValues[0])}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
</AccordionDetails>
|
</AccordionDetails>
|
||||||
</Accordion>
|
</Accordion>
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user