1
0
Fork 0
mirror of synced 2024-06-22 04:10:54 +12:00

few bugfixes

This commit is contained in:
Martin McKeaveney 2021-02-06 18:22:58 +00:00
parent 67371ab25f
commit 491d3afafd
8 changed files with 883 additions and 50 deletions

View file

@ -63,7 +63,7 @@
}
},
"dependencies": {
"@budibase/bbui": "^1.58.0",
"@budibase/bbui": "^1.58.1",
"@budibase/client": "^0.7.5",
"@budibase/colorpicker": "1.0.1",
"@budibase/string-templates": "^0.7.5",

View file

@ -13,6 +13,7 @@
import { createEventDispatcher } from "svelte"
import { isValid } from "@budibase/string-templates"
import { handlebarsCompletions } from "constants/completions"
import { readableToRuntimeBinding } from "builderStore/dataBinding"
const dispatch = createEventDispatcher()
@ -45,7 +46,8 @@
}
function checkValid() {
validity = isValid(value)
const runtimeValue = readableToRuntimeBinding(bindings, valueToParse)
validity = isValid(runtimeValue)
}
</script>

View file

@ -16,7 +16,7 @@
...property,
category: property.type === "instance" ? "Component" : "Table",
label: property.readableBinding,
path: property.readableBinding,
path: property.runtimeBinding,
}))
$: query =

View file

@ -22,7 +22,12 @@
</script>
<div>
<Multiselect align="right" extraThin secondary value={boundValue} on:change={setValue}>
<Multiselect
align="right"
extraThin
secondary
value={boundValue}
on:change={setValue}>
{#each options as option}
<option value={option}>{option}</option>
{/each}

View file

@ -53,7 +53,7 @@
}
}
// The "safe" value is the value with eny bindings made readable
// The "safe" value is the value with any bindings made readable
// If there is no value set, any default value is used
const getSafeValue = (value, defaultValue, bindableProperties) => {
const enriched = runtimeToReadableBinding(bindableProperties, value)

View file

@ -32,13 +32,13 @@
<Spacer medium />
<div class="card-footer">
<TextButton text medium blue href="/_builder/{_id}">
Open {name}
Open
{name}
</TextButton>
{#if appExportLoading}
<Spinner size="10" />
{:else}
<i class="ri-folder-download-line" on:click={exportApp} />
{/if}
{:else}<i class="ri-folder-download-line" on:click={exportApp} />{/if}
</div>
</div>

File diff suppressed because it is too large Load diff

View file

@ -51,7 +51,10 @@ const navigationHandler = action => {
const queryExecutionHandler = async (action, context) => {
const { datasourceId, queryId, queryParams } = action.parameters
const enrichedQueryParameters = enrichDataBindings(queryParams || {}, context)
const enrichedQueryParameters = await enrichDataBindings(
queryParams || {},
context
)
await executeQuery({
datasourceId,
queryId,