respond to pr feedback
This commit is contained in:
parent
b60bfe1d35
commit
664c508d14
|
@ -220,7 +220,18 @@
|
||||||
const stepStore = writable({})
|
const stepStore = writable({})
|
||||||
$: stepState = $stepStore?.[block.id]
|
$: stepState = $stepStore?.[block.id]
|
||||||
|
|
||||||
$: customStepLayouts($memoBlock, schemaProperties, stepState, fetchedRows)
|
const updateSelectedRow = testData => {
|
||||||
|
selectedRow = testData?.row
|
||||||
|
}
|
||||||
|
$: updateSelectedRow(testData)
|
||||||
|
|
||||||
|
$: customStepLayouts(
|
||||||
|
$memoBlock,
|
||||||
|
schemaProperties,
|
||||||
|
stepState,
|
||||||
|
fetchedRows,
|
||||||
|
selectedRow
|
||||||
|
)
|
||||||
|
|
||||||
const customStepLayouts = block => {
|
const customStepLayouts = block => {
|
||||||
if (
|
if (
|
||||||
|
|
Loading…
Reference in New Issue