소스 검색

feat(settings): hide up-to-date message during load

During loading of the AppList the message 'All apps are up-to-date.' was always shown even if there were updates available afterwards.

Signed-off-by: Dominik Pschenitschni <6173598+dpschen@users.noreply.github.com>
pull/45030/head
Dominik Pschenitschni 4 주 전
부모
커밋
d07bdac8fc
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      apps/settings/src/components/AppList.vue

+ 2
- 2
apps/settings/src/components/AppList.vue 파일 보기

@@ -31,7 +31,7 @@
<template v-if="useListView">
<div v-if="showUpdateAll" class="apps-list__toolbar">
{{ n('settings', '%n app has an update available', '%n apps have an update available', counter) }}
<NcButton v-if="showUpdateAll"
<NcButton
id="app-list-update-all"
type="primary"
@click="updateAll">
@@ -39,7 +39,7 @@
</NcButton>
</div>

<div v-if="!showUpdateAll" class="apps-list__toolbar">
<div v-else-if="!loading" class="apps-list__toolbar">
{{ t('settings', 'All apps are up-to-date.') }}
</div>


Loading…
취소
저장