1
0
Fork 0
mirror of synced 2024-10-05 20:44:47 +13:00

Merge pull request #11416 from Budibase/budi-7352-query-parameter-fields-dont-save-in-external-data-connector

fix for saving external data connector query param values
This commit is contained in:
Andrew Kingston 2023-08-02 16:52:04 +01:00 committed by GitHub
commit 742200a39d
2 changed files with 2 additions and 4 deletions

View file

@ -108,10 +108,7 @@
/****************************************************/
const getInputData = (testData, blockInputs) => {
let newInputData = testData || blockInputs
if (block.event === "app:trigger" && !newInputData?.fields) {
newInputData = cloneDeep(blockInputs)
}
let newInputData = cloneDeep(testData || blockInputs)
/**
* TODO - Remove after November 2023

View file

@ -50,6 +50,7 @@
type="string"
{bindings}
fillWidth={true}
updateOnChange={false}
/>
{/each}
</div>