fix the display of the app's name in the SystemUpdate.vue

This commit is contained in:
Kay0u 2022-03-15 15:51:18 +01:00
parent cd02aa3922
commit 002b313322
No known key found for this signature in database
GPG key ID: AAFEEB16CFA2AE2D

View file

@ -35,11 +35,11 @@
<card :title="$t('applications')" icon="cubes" no-body> <card :title="$t('applications')" icon="cubes" no-body>
<b-list-group v-if="apps" flush> <b-list-group v-if="apps" flush>
<b-list-group-item <b-list-group-item
v-for="{ label, id, current_version, new_version } in apps" :key="id" v-for="{ name, id, current_version, new_version } in apps" :key="id"
class="d-flex justify-content-between align-items-center" class="d-flex justify-content-between align-items-center"
> >
<h5 class="m-0"> <h5 class="m-0">
{{ label }} {{ name }}
<small>({{ id }}) {{ $t('from_to', [current_version, new_version]) }}</small> <small>({{ id }}) {{ $t('from_to', [current_version, new_version]) }}</small>
</h5> </h5>