cleanup
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
choelzl 2021-07-16 16:22:19 +02:00
parent 2bc3828ab5
commit d64c4ad26f
Signed by: sora
GPG Key ID: A362EA0491E2EEA0

View File

@ -75,9 +75,17 @@
<div v-html="generate_icon(item.hotel,'darkblue')"></div> <div v-html="generate_icon(item.hotel,'darkblue')"></div>
</l-icon> </l-icon>
<l-popup> <l-popup>
<div> <h1 class="row text-medium text-center">{{item.hotel.sname}}</h1>
Hotel: {{item.hotel.display_name}} <span class="row text-small text-gray">{{item.hotel.display_name}}</span>
</div> <div class="row">
<textarea-autosize
class="col-12 col-sm-10"
placeholder="Notes"
v-model="item.hotel.notes"
:min-height="30"
:max-height="350"
/>
</div>
</l-popup> </l-popup>
<!-- <l-tooltip :options="{ permanent: true, interactive: true }"> <!-- <l-tooltip :options="{ permanent: true, interactive: true }">
@ -91,9 +99,17 @@
<div v-html="generate_icon(place,'cadetblue')"></div> <div v-html="generate_icon(place,'cadetblue')"></div>
</l-icon> </l-icon>
<l-popup> <l-popup>
<div> <h1 class="row text-medium text-center">{{place.sname}}</h1>
Restaurant: {{place.display_name}} <span class="row text-small text-gray">{{place.display_name}}</span>
</div> <div class="row">
<textarea-autosize
class="col-12 col-sm-10"
placeholder="Notes"
v-model="place.notes"
:min-height="30"
:max-height="350"
/>
</div>
</l-popup> </l-popup>
</l-marker> </l-marker>
<l-marker v-for="place in item.places.activities" :lat-lng.sync="place.latlon"> <l-marker v-for="place in item.places.activities" :lat-lng.sync="place.latlon">
@ -101,9 +117,17 @@
<div v-html="generate_icon(place)"></div> <div v-html="generate_icon(place)"></div>
</l-icon> </l-icon>
<l-popup> <l-popup>
<div> <h1 class="row text-medium text-center">{{place.sname}}</h1>
Activity: {{place.display_name}} <span class="row text-small text-gray">{{place.display_name}}</span>
</div> <div class="row">
<textarea-autosize
class="col-12 col-sm-10"
placeholder="Notes"
v-model="place.notes"
:min-height="30"
:max-height="350"
/>
</div>
</l-popup> </l-popup>
</l-marker> </l-marker>
</l-map> </l-map>
@ -187,18 +211,17 @@
<div v-html="generate_icon(journey_data.main[journey_step_data.section].hotel,'darkblue')"></div> <div v-html="generate_icon(journey_data.main[journey_step_data.section].hotel,'darkblue')"></div>
</l-icon> </l-icon>
<l-popup> <l-popup>
<h1 class="row text-medium text-center">{{journey_data.main[journey_step_data.section].hotel.sname}}</h1> <h1 class="row text-medium text-center">{{journey_data.main[journey_step_data.section].hotel.sname}}</h1>
<span class="row text-small text-gray">{{journey_data.main[journey_step_data.section].hotel.display_name}}</span> <span class="row text-small text-gray">{{journey_data.main[journey_step_data.section].hotel.display_name}}</span>
<div class="row"> <div class="row">
<textarea-autosize <textarea-autosize
class="col-12 col-sm-10" class="col-12 col-sm-10"
placeholder="Notes" placeholder="Notes"
v-model="journey_data.main[journey_step_data.section].hotel.notes" v-model="journey_data.main[journey_step_data.section].hotel.notes"
:min-height="30" :min-height="30"
:max-height="350" :max-height="350"
/> />
</div> </div>
</div>
</l-popup> </l-popup>
</l-marker> </l-marker>
<l-marker v-for="place in journey_data.main[journey_step_data.section].places.activities" :lat-lng="place.latlon"> <l-marker v-for="place in journey_data.main[journey_step_data.section].places.activities" :lat-lng="place.latlon">