@geode/opengeodeweb-front 10.33.1 → 10.33.2

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.
@@ -15,7 +15,7 @@ const { itemProps } = defineProps({
15
15
  itemProps: { type: Object, required: true },
16
16
  });
17
17
 
18
- const id = toRef(() => itemProps.id);
18
+ const id = computed(() => itemProps.meta_data.modelId || itemProps.id);
19
19
 
20
20
  const visibility = computed({
21
21
  get: () => dataStyleStore.modelEdgesVisibility(id.value),
@@ -16,7 +16,7 @@ const { itemProps } = defineProps({
16
16
  itemProps: { type: Object, required: true },
17
17
  });
18
18
 
19
- const id = toRef(() => itemProps.id);
19
+ const id = computed(() => itemProps.meta_data.modelId || itemProps.id);
20
20
 
21
21
  const visibility = computed({
22
22
  get: () => dataStyleStore.modelPointsVisibility(id.value),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geode/opengeodeweb-front",
3
- "version": "10.33.1",
3
+ "version": "10.33.2",
4
4
  "description": "OpenSource Vue/Nuxt/Pinia/Vuetify framework for web applications",
5
5
  "homepage": "https://github.com/Geode-solutions/OpenGeodeWeb-Front",
6
6
  "bugs": {