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

View File

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