diff options
author | Christopher Ng <chrng8@gmail.com> | 2023-12-07 18:53:33 -0800 |
---|---|---|
committer | backportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com> | 2023-12-08 16:15:40 +0000 |
commit | 8d82cff756c5ba5f6e3dc66641f7742c2aff6b0e (patch) | |
tree | 361e3cb6a28825728044d28ee8b7891cab0f7e48 | |
parent | 291e56d272edc961f4f295c7722efe4789a519e7 (diff) | |
download | nextcloud-server-8d82cff756c5ba5f6e3dc66641f7742c2aff6b0e.tar.gz nextcloud-server-8d82cff756c5ba5f6e3dc66641f7742c2aff6b0e.zip |
fix(settings): Expected string aria-label got boolean error
Signed-off-by: Christopher Ng <chrng8@gmail.com>
-rw-r--r-- | apps/settings/src/mixins/AppManagement.js | 2 |
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.') |