Skip to content

Commit

Permalink
Add label to devices panel in dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
NHAS committed Nov 29, 2024
1 parent 22f32b6 commit d2f28db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adminui/frontend/src/pages/Dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const { next: nextPage, prev: prevPage, totalPages, currentItems: currentLogLine
>
<div class="card-body" v-if="lockedDevices.length == 0">
<h5 class="card-title">Manage Devices</h5>
<div>{{ devicesStore.numDevices() == 0 ? 'No devices' : devicesStore.numDevices() }}</div>
<div>{{ devicesStore.numDevices() == 0 ? 'No devices' : devicesStore.numDevices() + " devices"}}</div>
</div>
<div class="card-body" v-else>
<h5 class="card-title">Unlock Device{{ lockedDevices.length > 1 ? 's' : '' }}</h5>
Expand Down

0 comments on commit d2f28db

Please sign in to comment.