From 29867d64c80174b98332bbcddb9720a67813671c Mon Sep 17 00:00:00 2001 From: Christopher Ng Date: Thu, 7 Dec 2023 18:53:33 -0800 Subject: [PATCH] fix(settings): Expected string aria-label got boolean error Signed-off-by: Christopher Ng --- apps/settings/src/mixins/AppManagement.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.') -- 2.39.5