Skip to content

Commit

Permalink
fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitdemaegdt committed Nov 6, 2023
1 parent 6626b3a commit 3f1a92c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pages/carte-interactive/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
definePageMeta({
pageTransition: false,
layout: 'fullscreen'
})
});
const { data: voies } = await useAsyncData(() => {
return queryContent('voies-lyonnaises').where({ _type: 'json' }).find()
})
return queryContent('voies-lyonnaises').where({ _type: 'json' }).find();
});
const features = voies.value.map(voie => voie.features).flat()
const features = voies.value.map(voie => voie.features).flat();
const description = 'Découvrez la carte interactive des Voies Lyonnaises. Itinéraires rue par rue. Plan régulièrement mis à jour pour une information complète.'
const COVER_IMAGE_URL = 'https://cyclopolis.lavilleavelo.org/cyclopolis.png'
const description = 'Découvrez la carte interactive des Voies Lyonnaises. Itinéraires rue par rue. Plan régulièrement mis à jour pour une information complète.';
const COVER_IMAGE_URL = 'https://cyclopolis.lavilleavelo.org/cyclopolis.png';
useHead({
title: 'Carte à jour des Voies Lyonnaises',
meta: [
Expand All @@ -30,5 +30,5 @@ useHead({
{ hid: 'og:image', property: 'og:image', content: COVER_IMAGE_URL },
{ hid: 'twitter:image', name: 'twitter:image', content: COVER_IMAGE_URL }
]
})
});
</script>

0 comments on commit 3f1a92c

Please sign in to comment.