diff --git a/components/Map.vue b/components/Map.vue index cc1ff028..c0578e30 100644 --- a/components/Map.vue +++ b/components/Map.vue @@ -24,11 +24,11 @@ client-only(placeholder='Loading...' ) v-row //- p.my-4(v-text="$t('common.getting_there')") v-btn.ml-2(icon large :href="routeBy('foot')") - v-icon(v-text='mdiWalk' color='white') + v-icon(v-text='mdiWalk') v-btn.ml-2(icon large :href="routeBy('bike')") - v-icon(v-text='mdiBike' color='white') + v-icon(v-text='mdiBike') v-btn.ml-2(icon large :href="routeBy('car')") - v-icon(v-text='mdiCar' color='white') + v-icon(v-text='mdiCar') v-spacer v-btn(@click='$emit("close")' outlined) Close diff --git a/components/WhereInput.vue b/components/WhereInput.vue index 4f708abe..76ea1935 100644 --- a/components/WhereInput.vue +++ b/components/WhereInput.vue @@ -46,6 +46,7 @@ v-row.mb-4 :hint="$t('event.address_description')") template(v-slot:item="{ item, attrs, on }") v-list-item(v-bind='attrs' v-on='on') + v-icon.pr-4(v-text='loadCoordinatesResultIcon(item)') v-list-item-content(two-line v-if='item') v-list-item-title(v-text='item.name') v-list-item-subtitle(v-text='`${item.address}`') @@ -62,7 +63,7 @@ v-row.mb-4