@7365admin1/layer-common 3.2.2-staging.134 → 3.2.2-staging.135
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.
|
@@ -229,11 +229,11 @@ const { data: overnightParkingRequests, pending: isPendingOvernightParkingReques
|
|
|
229
229
|
|
|
230
230
|
|
|
231
231
|
watch(overnightParkingRequests, (data: any) => {
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
232
|
+
items.value = Array.isArray(data?.items)
|
|
233
|
+
? data.items
|
|
234
|
+
: Array.isArray(data)
|
|
235
|
+
? data
|
|
236
|
+
: []
|
|
237
237
|
pages.value = data?.pages ?? 0;
|
|
238
238
|
pageRange.value = data?.pageRange ?? "-- - -- of --"
|
|
239
239
|
}, { immediate: true })
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@7365admin1/layer-common",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "3.2.2-staging.
|
|
5
|
+
"version": "3.2.2-staging.135",
|
|
6
6
|
"author": "7365admin1",
|
|
7
7
|
"main": "./nuxt.config.ts",
|
|
8
8
|
"//files": "What a consumer extending this layer actually loads. Without this npm ships the whole working tree - the changesets, the CI workflows, the render harness in tools/ and any scratch directory that happened to exist at publish time. Nuxt resolves a layer by directory, so every runtime directory below has to stay listed; adding a new top-level runtime directory means adding it here too.",
|