We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff385dc commit 5d5818fCopy full SHA for 5d5818f
apps/settings/src/components/AppList.vue
@@ -125,10 +125,10 @@ export default {
125
return this.$store.getters.loading('list')
126
},
127
hasPendingUpdate() {
128
- return this.apps.filter(app => app.update).length > 1
+ return this.apps.filter(app => app.update).length > 0
129
130
showUpdateAll() {
131
- return this.hasPendingUpdate && ['installed', 'updates'].includes(this.category)
+ return this.hasPendingUpdate && ['installed', 'updates', 'enabled'].includes(this.category)
132
133
apps() {
134
const apps = this.$store.getters.getAllApps
0 commit comments