Fixed note formating
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
soraefir 2023-06-18 17:41:03 +02:00
parent 5227f4d1fe
commit 226607e461
Signed by: sora
GPG Key ID: A362EA0491E2EEA0

View File

@ -449,7 +449,7 @@
<textarea-autosize <textarea-autosize
class="col-8 col-sm-8 text-small" class="col-8 col-sm-8 text-small"
placeholder="No Restaurants" placeholder="No Restaurants"
:value="item.places.restaurants.map(v=>`${v.sname}(${v.notes||''})`).join(', ')" :value="item.places.restaurants.map(v=>v.sname+(v.notes?('('+v.notes+')'):'')).join(', ')"
:min-height="30" :min-height="30"
:max-height="350" :max-height="350"
disabled disabled
@ -460,7 +460,7 @@
<textarea-autosize <textarea-autosize
class="col-8 col-sm-8 text-small" class="col-8 col-sm-8 text-small"
placeholder="No Activities" placeholder="No Activities"
:value="item.places.activities.map(v=>`${v.sname}(${v.notes||''})`).join(', ')" :value="item.places.activities.map(v=>v.sname+(v.notes?('('+v.notes+')'):'')).join(', ')"
:min-height="30" :min-height="30"
:max-height="350" :max-height="350"
disabled disabled