@tekkare/auriga 0.2.83 → 0.2.84
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/dist/module.json
CHANGED
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
v-if="
|
|
47
47
|
filterBlocks.length > 0 &&
|
|
48
48
|
blockCategories !== null &&
|
|
49
|
-
blockCategories
|
|
49
|
+
blockCategories?.length > 0
|
|
50
50
|
"
|
|
51
51
|
class="oip_list v-start gap-16"
|
|
52
52
|
>
|
|
@@ -288,7 +288,7 @@ export default defineComponent({
|
|
|
288
288
|
)
|
|
289
289
|
];
|
|
290
290
|
}
|
|
291
|
-
return categories.value.some((a) => a.startsWith("{")) ? categories.value.map((a) => JSON.parse(a)) : categories.value;
|
|
291
|
+
return categories.value !== null ? categories.value.some((a) => a.startsWith("{")) ? categories.value.map((a) => JSON.parse(a)) : categories.value : null;
|
|
292
292
|
});
|
|
293
293
|
onBeforeMount(async () => {
|
|
294
294
|
setLang();
|