Adopt changes in MyE&P

This commit is contained in:
Björn Fromme
2021-06-16 12:31:10 +02:00
parent 2a7c9290dd
commit fef5af6faa
2 changed files with 6 additions and 4 deletions
@@ -104,9 +104,11 @@
<tr v-if="participant.surcharges.length > 0">
<th>Zuschläge</th>
<td>
<p v-for="surcharge in participant.surcharges">
{{ surcharge.priceSingle.toFixed(2) }} ({{ surcharge.name }})
</p>
<ul class="list-unstyled">
<li v-for="surcharge in participant.surcharges">
{{ surcharge.priceSingle.toFixed(2) }} <span v-show="surcharge.name">({{ surcharge.name }})</span>
</li>
</ul>
</td>
</tr>
<tr>
@@ -1,5 +1,5 @@
<template>
<div class="relative" v-if="mutable">
<div class="relative" v-if="mutable && selectableAccommodations.length > 0">
<button class="btn btn-primary btn-sm w-full lg:w-auto" type="button" @click.prevent="visible = !visible">
Zimmer <span class="glyphicon" :class="{ 'glyphicon-chevron-up': visible, 'glyphicon-chevron-down': !visible }"></span>
</button>