Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/settings/src/components/AppList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
<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"

Check failure on line 18 in apps/settings/src/components/AppList.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Expected no linebreak before this attribute
type="primary"
@click="updateAll">
{{ n('settings', 'Update', 'Update all', counter) }}
</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>

Expand Down
Loading