1
0
Fork 0
mirror of synced 2024-06-26 10:00:41 +12:00

amended code following recommendations in PR comments

This commit is contained in:
NEOLPAR 2022-07-26 17:22:42 +01:00
parent 7292afd438
commit eb9db559e0
3 changed files with 2 additions and 6 deletions

View file

@ -15,8 +15,6 @@
let trigger = {}
let schemaProperties = {}
$: trigger
$: schemaProperties
$: {
// clone the trigger so we're not mutating the reference
trigger = cloneDeep(
@ -27,7 +25,7 @@
let schema = Object.entries(trigger.schema?.outputs?.properties || {})
if (trigger?.event === "app:trigger") {
schema = Object.entries({ fields: { customType: "fields" } })
schema = [["fields", { customType: "fields" }]]
}
schemaProperties = schema

View file

@ -53,7 +53,7 @@
$: getInputData(testData, block.inputs)
const getInputData = (testData, blockInputs) => {
let newInputData = testData ? testData : blockInputs
let newInputData = testData || blockInputs
if (block.event === "app:trigger" && !newInputData?.fields) {
newInputData = cloneDeep(blockInputs)

View file

@ -87,8 +87,6 @@
}
</script>
FieldSelector
{#if schemaFields.length && isTestModal}
<div class="schema-fields">
{#each schemaFields as [field, schema]}