Skip to content

Commit

Permalink
fix: type check
Browse files Browse the repository at this point in the history
  • Loading branch information
AlitaBernachot committed Aug 16, 2024
1 parent e5475af commit 29107fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/draw/draw-panel-features.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { storeToRefs } from 'pinia'
import useSortable from '@/composables/sortable'
import { useDrawStore } from '@/stores/draw.store'
import { DrawFeature } from '@/stores/draw.store.model'
import FeatureItem from './feature-item.vue'
Expand Down Expand Up @@ -53,7 +54,7 @@ onMounted(() => {
:isDocked="featureEditionDocked"
:isEditing="currentEditingFeature === feature.id"
:isOpen="currentOpenedFeature === feature.id"
:feature="feature"
:feature="<DrawFeature>feature"
@toggleFeatureSub="onToggleFeatureSub"
@toggleFeatureEdit="onToggleFeatureEdit"
@toggleDock="() => (featureEditionDocked = !featureEditionDocked)"
Expand Down

0 comments on commit 29107fd

Please sign in to comment.