Skip to content

Commit

Permalink
fix(ci): fix types issue
Browse files Browse the repository at this point in the history
  • Loading branch information
0live committed Jan 15, 2025
1 parent b5f2c30 commit ca0d0b6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions vue/src/views/map/components/MyMapPlatformLayers.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,19 @@
<MyMapLayerPicker
v-model:main-layer="myMapStore.projectLayer"
v-model:sub-layers="myMapStore.projectSubLayers"
:sublayerIcon="false"
@update="refreshLayer(ItemType.PROJECT)"
/>
<MyMapLayerPicker
v-model:main-layer="myMapStore.actorLayer"
v-model:sub-layers="myMapStore.actorSubLayers"
:sublayerIcon="false"
@update="refreshLayer(ItemType.ACTOR)"
/>
<MyMapLayerPicker
v-model:main-layer="myMapStore.resourceLayer"
v-model:sub-layers="myMapStore.resourceSubLayers"
:sublayerIcon="false"
@update="refreshLayer(ItemType.RESOURCE)"
/>
</div>
Expand Down

0 comments on commit ca0d0b6

Please sign in to comment.