aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorChristopher Ng <chrng8@gmail.com>2023-12-07 18:53:33 -0800
committerChristopher Ng <chrng8@gmail.com>2023-12-07 18:53:33 -0800
commit29867d64c80174b98332bbcddb9720a67813671c (patch)
tree490117fbf4a7bb7ba1e0d6ddaf931767cbd1d7a2 /apps
parent32fad8f692b44f493d576d4caf27939607c6b42a (diff)
downloadnextcloud-server-29867d64c80174b98332bbcddb9720a67813671c.tar.gz
nextcloud-server-29867d64c80174b98332bbcddb9720a67813671c.zip
fix(settings): Expected string aria-label got boolean error
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/settings/src/mixins/AppManagement.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/src/mixins/AppManagement.js b/apps/settings/src/mixins/AppManagement.js
index d4df360a2f9..748e462f7da 100644
--- a/apps/settings/src/mixins/AppManagement.js
+++ b/apps/settings/src/mixins/AppManagement.js
@@ -50,7 +50,7 @@ export default {
if (this.app.needsDownload) {
return t('settings', 'The app will be downloaded from the App Store')
}
- return false
+ return null
},
forceEnableButtonTooltip() {
const base = t('settings', 'This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected.')