Make hidden users appear in italics to administrators
This commit is contained in:
parent
d517a0e7fe
commit
aeb2b16634
@ -107,7 +107,14 @@
|
|||||||
<template x-if="$store.state.data.otherUsers.length > 0">
|
<template x-if="$store.state.data.otherUsers.length > 0">
|
||||||
<template x-for="otherUser in $store.state.data.otherUsers">
|
<template x-for="otherUser in $store.state.data.otherUsers">
|
||||||
<tr>
|
<tr>
|
||||||
<td x-text="otherUser.name"></td>
|
<template x-if="$store.state.data.otherUser.isHidden">
|
||||||
|
<td>
|
||||||
|
<i x-text="otherUser.name"></i>
|
||||||
|
</td>
|
||||||
|
</template>
|
||||||
|
<template x-if="!$store.state.data.otherUser.isHidden">
|
||||||
|
<td x-text="otherUser.name"></td>
|
||||||
|
</template>
|
||||||
<td x-text="otherUser.totalKilometers"></td>
|
<td x-text="otherUser.totalKilometers"></td>
|
||||||
<td x-text="otherUser.earliestActivity"></td>
|
<td x-text="otherUser.earliestActivity"></td>
|
||||||
<td x-text="otherUser.latestActivity"></td>
|
<td x-text="otherUser.latestActivity"></td>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user