Skip to content

Commit

Permalink
wip: Errors while displaying LocationMap #910
Browse files Browse the repository at this point in the history
  • Loading branch information
cnouguier committed Aug 5, 2024
1 parent 832e977 commit 29ae24c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions map/client/components/location/KLocationTip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
anchor="center end"
self="center middle"
class="q-pa-none"
:delay="300"
:delay="500"
:hide-delay="150"
:transition-duration="150"
style="border-radius: 100px; border: 1px solid var(--q-primary);"
>
<KLocationMap
Expand All @@ -15,7 +17,7 @@
</template>

<script setup>
import { toRef } from 'vue'
import { computed } from 'vue'
import KLocationMap from './KLocationMap.vue'
// Props
Expand All @@ -27,5 +29,7 @@ const props = defineProps({
})
// Data
const feature = toRef(props, 'location')
const feature = computed(() => {
return props.location
})
</script>

0 comments on commit 29ae24c

Please sign in to comment.