Skip to content

Commit

Permalink
refactor: removed div container in KLocationMap
Browse files Browse the repository at this point in the history
  • Loading branch information
cnouguier committed Aug 27, 2024
1 parent 97b33da commit 2f5eb69
Showing 1 changed file with 9 additions and 15 deletions.
24 changes: 9 additions & 15 deletions map/client/components/location/KLocationMap.vue
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
<template>
<div class="fit column">
<!-- Map container -->
<div
:ref="mapRefCreated"
class="col"
>
<q-resize-observer @resize="refreshMap" />
<!-- Map header -->
<div class="row justify-center">
<KPanel
id="header"
:content="headerComponents"
class="k-location-map-toolbar"
/>
</div>
<div :ref="mapRefCreated" class="fit">
<q-resize-observer @resize="refreshMap" />
<!-- Map header -->
<div class="row justify-center">
<KPanel
id="header"
:content="headerComponents"
class="k-location-map-toolbar"
/>
</div>
</div>
</template>
Expand Down

0 comments on commit 2f5eb69

Please sign in to comment.