Merge branch 'master' of github.com:Budibase/budibase into new-data-ui
This commit is contained in:
commit
d8fd021e37
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue