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:
commit
742200a39d
|
@ -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
|
||||
|
|
|
@ -50,6 +50,7 @@
|
|||
type="string"
|
||||
{bindings}
|
||||
fillWidth={true}
|
||||
updateOnChange={false}
|
||||
/>
|
||||
{/each}
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue