Merge remote-tracking branch 'origin/master' into feature/signature-field-and-component
This commit is contained in:
commit
5a5896bd50
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "2.26.3",
|
||||
"version": "2.26.4",
|
||||
"npmClient": "yarn",
|
||||
"packages": [
|
||||
"packages/*",
|
||||
|
|
|
@ -20,9 +20,8 @@
|
|||
import { SignatureModal } from "@budibase/frontend-core/src/components"
|
||||
import { themeStore } from "stores/portal"
|
||||
|
||||
export let defaultValue
|
||||
export let meta
|
||||
export let value = defaultValue || (meta.type === "boolean" ? false : "")
|
||||
export let value
|
||||
export let readonly
|
||||
export let error
|
||||
|
||||
|
|
|
@ -246,7 +246,7 @@ export async function outputProcessing<T extends Row[] | Row>(
|
|||
}
|
||||
return attachment
|
||||
}
|
||||
if (typeof row[property] === "string") {
|
||||
if (typeof row[property] === "string" && row[property].length) {
|
||||
row[property] = JSON.parse(row[property])
|
||||
}
|
||||
if (Array.isArray(row[property])) {
|
||||
|
|
Loading…
Reference in New Issue