Skip to content

Commit 09ebb7d

Browse files
committed
fix(ContextMenuItem): Changing import
1 parent 497c563 commit 09ebb7d

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

components/Viewer/Generic/Mesh/EdgesOptions.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<ContextMenuItem
2+
<ViewerContextMenuItem
33
:itemProps="props.itemProps"
44
tooltip="Edges options"
55
:btn_image="props.btn_image"
@@ -14,7 +14,7 @@
1414
/>
1515
</template>
1616
</template>
17-
</ContextMenuItem>
17+
</ViewerContextMenuItem>
1818
</template>
1919

2020
<script setup>

components/Viewer/Generic/Mesh/PolygonsOptions.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<ContextMenuItem
2+
<ViewerContextMenuItem
33
:itemProps="props.itemProps"
44
:tooltip="props.tooltip"
55
:btn_image="props.btn_image"
@@ -17,7 +17,7 @@
1717
/>
1818
</template>
1919
</template>
20-
</ContextMenuItem>
20+
</ViewerContextMenuItem>
2121
</template>
2222

2323
<script setup>

components/Viewer/Generic/Mesh/PolyhedraOptions.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<ContextMenuItem
2+
<ViewerContextMenuItem
33
:itemProps="props.itemProps"
44
:tooltip="props.tooltip"
55
:btn_image="props.btn_image"
@@ -17,7 +17,7 @@
1717
/>
1818
</template>
1919
</template>
20-
</ContextMenuItem>
20+
</ViewerContextMenuItem>
2121
</template>
2222

2323
<script setup>

components/Viewer/Generic/Model/EdgesOptions.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<template>
2-
<ContextMenuItem
2+
<ViewerContextMenuItem
33
:itemProps="itemProps"
44
tooltip="Edges options"
55
:btn_image="SurfaceEdges"
66
>
77
<template #options>
88
<ViewerOptionsVisibilitySwitch v-model="visibility" />
99
</template>
10-
</ContextMenuItem>
10+
</ViewerContextMenuItem>
1111
</template>
1212

1313
<script setup>

components/Viewer/Generic/Model/PointsOptions.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<ContextMenuItem
2+
<ViewerContextMenuItem
33
:itemProps="props.itemProps"
44
tooltip="Points options"
55
:btn_image="SurfacePoints"
@@ -26,7 +26,7 @@
2626
</v-row>
2727
</template>
2828
</template>
29-
</ContextMenuItem>
29+
</ViewerContextMenuItem>
3030
</template>
3131

3232
<script setup>

components/Viewer/PointSet/SpecificPointsOptions.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<ContextMenuItem
2+
<ViewerContextMenuItem
33
:itemProps="props.itemProps"
44
tooltip="Points options"
55
:btn_image="props.btn_image"
@@ -36,7 +36,7 @@
3636
</v-row>
3737
</template>
3838
</template>
39-
</ContextMenuItem>
39+
</ViewerContextMenuItem>
4040
</template>
4141

4242
<script setup>

0 commit comments

Comments
 (0)