Fix linter

This commit is contained in:
Gautier P 2021-02-12 12:15:50 +01:00
parent 6862648d50
commit 764a5c68ec
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
<v-tilelayer :url="tiles.url" :attribution="tiles.attribution"></v-tilelayer>
<v-marker-cluster>
<template v-for="marker in flats">
<v-marker :lat-lng="{ lat: marker.gps[0], lng: marker.gps[1] }" :icon="icons.flat" v-on:click="$emit('select-flat', marker.flat_id)">
<v-marker :lat-lng="{ lat: marker.gps[0], lng: marker.gps[1] }" :icon="icons.flat" v-on:click="$emit('select-flat', marker.flatId)">
<!-- <v-popup :content="marker.content"></v-popup> -->
</v-marker>
</template>

View File

@ -60,7 +60,7 @@ export default {
"</a>" +
cost,
gps: gps,
flat_id: flat.id,
flatId: flat.id,
});
}
}