Minor ui changes

This commit is contained in:
Douglas Barone 2022-06-03 13:24:22 +00:00
parent d8733e27d7
commit e10cd72522

View File

@ -76,13 +76,14 @@
> >
{{ signalStrengthIcon(signalStrength) }} {{ signalStrengthIcon(signalStrength) }}
</v-icon> </v-icon>
{{ signalStrength }} dBm <span class="font-weight-medium">{{ signalStrength }}</span>
<small class="ml-1"> dBm </small>
</v-chip> </v-chip>
</template> </template>
<template v-else> <template v-else>
<v-chip small outlined> <v-chip small color="grey lighten-4">
<v-icon small left>mdi-signal-off</v-icon> <v-icon small left color="grey">mdi-signal-off</v-icon>
Aguarde... <small>Aguarde...</small>
</v-chip> </v-chip>
</template> </template>
</template> </template>
@ -94,6 +95,14 @@
<template #[`item.usage`]="{ item: { usage } }"> <template #[`item.usage`]="{ item: { usage } }">
{{ usage | bytes }} {{ usage | bytes }}
</template> </template>
<template #[`item.protocol`]="{ item: { protocol } }">
<code>{{ protocol || 'Indisponível' }}</code>
</template>
<template #[`item.frequency`]="{ item: { frequency } }">
{{ frequency || 'Indisponível' }}
</template>
</v-data-table> </v-data-table>
</v-card-text> </v-card-text>
<v-divider /> <v-divider />