Bugfix for when checking if other user is hidden
This commit is contained in:
parent
5a886c3481
commit
589b8deaae
@ -107,12 +107,12 @@
|
||||
<template x-if="$store.state.data.otherUsers.length > 0">
|
||||
<template x-for="otherUser in $store.state.data.otherUsers">
|
||||
<tr>
|
||||
<template x-if="$store.state.data.otherUser.isHidden">
|
||||
<template x-if="otherUser.isHidden">
|
||||
<td>
|
||||
<i x-text="otherUser.name"></i>
|
||||
</td>
|
||||
</template>
|
||||
<template x-if="!$store.state.data.otherUser.isHidden">
|
||||
<template x-if="!otherUser.isHidden">
|
||||
<td x-text="otherUser.name"></td>
|
||||
</template>
|
||||
<td x-text="otherUser.totalKilometers.toFixed(1)"></td>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user