remove unneeded cloneDeep

This commit is contained in:
Peter Clement 2023-03-14 14:09:10 +00:00
parent b854e06b33
commit 352791dd9b
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@
$: tempFilters = filters
$: stepId = block.stepId
$: bindings = getAvailableBindings(block, $selectedAutomation?.definition)
$: getInputData(testData, cloneDeep(block.inputs))
$: getInputData(testData, block.inputs)
$: tableId = inputData ? inputData.tableId : null
$: table = tableId
? $tables.list.find(table => table._id === inputData.tableId)