@budibase/frontend-core 2.7.31 → 2.7.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/frontend-core",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.32",
|
|
4
4
|
"description": "Budibase frontend core libraries used in builder and client",
|
|
5
5
|
"author": "Budibase",
|
|
6
6
|
"license": "MPL-2.0",
|
|
7
7
|
"svelte": "src/index.js",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@budibase/bbui": "2.7.
|
|
10
|
-
"@budibase/shared-core": "2.7.
|
|
9
|
+
"@budibase/bbui": "2.7.32",
|
|
10
|
+
"@budibase/shared-core": "2.7.32",
|
|
11
11
|
"dayjs": "^1.11.7",
|
|
12
12
|
"lodash": "^4.17.21",
|
|
13
13
|
"socket.io-client": "^4.6.1",
|
|
14
14
|
"svelte": "^3.46.2"
|
|
15
15
|
},
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "10be2164ca1e850a9e230229a560ae3aab997468"
|
|
17
17
|
}
|
|
@@ -90,12 +90,12 @@ export const deriveStores = context => {
|
|
|
90
90
|
// Update local state
|
|
91
91
|
table.set(newTable)
|
|
92
92
|
|
|
93
|
+
// Update server
|
|
94
|
+
await API.saveTable(newTable)
|
|
95
|
+
|
|
93
96
|
// Broadcast change to external state can be updated, as this change
|
|
94
97
|
// will not be received by the builder websocket because we caused it ourselves
|
|
95
98
|
dispatch("updatetable", newTable)
|
|
96
|
-
|
|
97
|
-
// Update server
|
|
98
|
-
await API.saveTable(newTable)
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
return {
|