UI changes

This commit is contained in:
Douglas Barone 2022-04-07 09:40:05 -04:00
parent 728fcf2fc1
commit 078668680b

View File

@ -42,36 +42,39 @@
<v-expansion-panels> <v-expansion-panels>
<v-expansion-panel v-for="user in items" :key="user.sAMAccountName"> <v-expansion-panel v-for="user in items" :key="user.sAMAccountName">
<v-expansion-panel-header> <v-expansion-panel-header>
<div style="width: 50px"> <v-container class="ma-0 pa-0">
<avatar size="24" left :src="user.thumbnailPhoto" /> <v-row>
{{ user.displayName }} ({{ user.sAMAccountName }}) <v-col class="shrink mr-2">
</div> <v-badge
<template #actions> color="grey darken-1"
<v-badge bottom
class="mx-4" offset-y="10"
color="grey darken-1" :content="
bottom user.wifiDevices
offset-y="10" .filter(wifiDevice => wifiDevice.status != 'ONLINE')
:content=" .length.toString()
user.wifiDevices "
.filter(wifiDevice => wifiDevice.status != 'ONLINE') >
.length.toString() <v-badge
" color="green darken-1"
> top
<v-badge offset-y="10"
color="green darken-1" :content="
top user.wifiDevices
offset-y="10" .filter(wifiDevice => wifiDevice.status == 'ONLINE')
:content=" .length.toString()
user.wifiDevices "
.filter(wifiDevice => wifiDevice.status == 'ONLINE') >
.length.toString() <v-icon>mdi-cellphone-wireless</v-icon>
" </v-badge>
> </v-badge>
<v-icon>mdi-cellphone-wireless</v-icon> </v-col>
</v-badge> <v-col>
</v-badge> <avatar size="24" left :src="user.thumbnailPhoto" />
</template> {{ user.displayName }} ({{ user.sAMAccountName }})
</v-col>
</v-row>
</v-container>
</v-expansion-panel-header> </v-expansion-panel-header>
<v-expansion-panel-content> <v-expansion-panel-content>
<v-expansion-panels accordion> <v-expansion-panels accordion>