Fix issue where all attendees appeared to be checked in in check-in section
This commit is contained in:
parent
539a0c4fec
commit
5b2a24e063
|
|
@ -102,6 +102,7 @@ section.attendeeList {
|
|||
width: 40px;
|
||||
height: 40px;
|
||||
line-height: 20px;
|
||||
background-color: #ebebeb;
|
||||
}
|
||||
|
||||
.at.arrived {
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@
|
|||
@click="toggleCheckin(attendee)"
|
||||
v-for="attendee in attendees"
|
||||
class="at list-group-item"
|
||||
:class = "{arrived : attendee.has_arrived}"
|
||||
:class = "{arrived : attendee.has_arrived || attendee.has_arrived == '1'}"
|
||||
>
|
||||
Name: <b>@{{ attendee.first_name }} @{{ attendee.last_name }} </b> <span v-if="!attendee.is_payment_received" class="label label-danger">Awaiting Payment</span>
|
||||
<br>
|
||||
|
|
|
|||
Loading…
Reference in New Issue