Fixes for #4736 - I believe the issue was that the dynamic variables were not being saved, removing the need for the user to be aware of this, also making it possible to pass the entire data structure from one call to another if desired.

This commit is contained in:
mike12345567 2022-05-04 15:26:19 +01:00
parent 1cc60bd404
commit 159cc9d277
3 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,8 @@
<script>
import { Input, ModalContent, Modal, Body } from "@budibase/bbui"
import { createEventDispatcher } from "svelte"
const dispatch = createEventDispatcher()
export let dynamicVariables
export let datasource
@ -35,6 +38,7 @@
name = null
binding = null
dynamicVariables[copiedName] = copiedBinding
dispatch("change", dynamicVariables)
}
</script>

View File

@ -299,6 +299,7 @@
{dynamicVariables}
bind:binding={varBinding}
bind:this={addVariableModal}
on:change={saveQuery}
/>
{#if query && queryConfig}
<div class="inner">

View File

@ -25,7 +25,7 @@ const HELPERS = [
if (
value != null &&
typeof value === "object" &&
value.toString() === "[object Object]"
(value.toString() === "[object Object]" || Array.isArray(value))
) {
return new SafeString(JSON.stringify(value))
}