From: Christopher Ng Date: Fri, 8 Dec 2023 02:53:33 +0000 (-0800) Subject: fix(settings): Expected string aria-label got boolean error X-Git-Tag: v29.0.0beta1~676^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=29867d64c80174b98332bbcddb9720a67813671c;p=nextcloud-server.git fix(settings): Expected string aria-label got boolean error Signed-off-by: Christopher Ng --- 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.')