@budibase/frontend-core 3.13.15 → 3.13.16
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/frontend-core",
|
|
3
|
-
"version": "3.13.
|
|
3
|
+
"version": "3.13.16",
|
|
4
4
|
"description": "Budibase frontend core libraries used in builder and client",
|
|
5
5
|
"author": "Budibase",
|
|
6
6
|
"license": "MPL-2.0",
|
|
@@ -17,5 +17,5 @@
|
|
|
17
17
|
"shortid": "2.2.15",
|
|
18
18
|
"socket.io-client": "^4.7.5"
|
|
19
19
|
},
|
|
20
|
-
"gitHead": "
|
|
20
|
+
"gitHead": "e7934b7332a032106b7581fbfc887b47557aa9f4"
|
|
21
21
|
}
|
|
@@ -171,9 +171,6 @@ export const initialise = (context: StoreContext) => {
|
|
|
171
171
|
primaryDisplay = candidatePD
|
|
172
172
|
}
|
|
173
173
|
|
|
174
|
-
const anyVisibilitySet = Object.values($enrichedSchema).find(
|
|
175
|
-
(col: any) => col.visible != undefined
|
|
176
|
-
)
|
|
177
174
|
// Update columns, removing extraneous columns and adding missing ones
|
|
178
175
|
columns.set(
|
|
179
176
|
Object.keys($enrichedSchema)
|
|
@@ -185,7 +182,7 @@ export const initialise = (context: StoreContext) => {
|
|
|
185
182
|
label: fieldSchema.displayName || field,
|
|
186
183
|
schema: fieldSchema,
|
|
187
184
|
width: fieldSchema.width || DefaultColumnWidth,
|
|
188
|
-
visible: fieldSchema.visible ??
|
|
185
|
+
visible: fieldSchema.visible ?? true,
|
|
189
186
|
readonly: fieldSchema.readonly,
|
|
190
187
|
order: fieldSchema.order,
|
|
191
188
|
conditions: fieldSchema.conditions,
|