mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
fix the display of the app's name in the SystemUpdate.vue
This commit is contained in:
parent
cd02aa3922
commit
002b313322
1 changed files with 2 additions and 2 deletions
|
@ -35,11 +35,11 @@
|
|||
<card :title="$t('applications')" icon="cubes" no-body>
|
||||
<b-list-group v-if="apps" flush>
|
||||
<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"
|
||||
>
|
||||
<h5 class="m-0">
|
||||
{{ label }}
|
||||
{{ name }}
|
||||
<small>({{ id }}) {{ $t('from_to', [current_version, new_version]) }}</small>
|
||||
</h5>
|
||||
|
||||
|
|
Loading…
Reference in a new issue