Merge branch 'master' of github.com:Budibase/budibase into new-data-ui

This commit is contained in:
Andrew Kingston 2024-08-20 15:31:23 +01:00
commit d8fd021e37
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import { writable, get, derived } from "svelte/store"
// subscribed children will only fire when a new value is actually set
export const memo = initialValue => {
const store = writable(initialValue)
let currentJSON = null
let currentJSON = JSON.stringify(initialValue)
const tryUpdateValue = newValue => {
const newJSON = JSON.stringify(newValue)