1
0
Fork 0
mirror of synced 2024-07-01 20:41:03 +12:00

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 9dd3df30b7
commit d0f5b67cf1
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))
}