diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2020-01-17 12:57:06 +0100 |
---|---|---|
committer | npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com> | 2020-01-17 12:14:33 +0000 |
commit | 8c229684d759c80d7435f86bd69a01453cd8ba0d (patch) | |
tree | 8973d85e8964b7ad67bb42c97c8babe58e7a3640 /core/src | |
parent | f012f0a3538985860bddf8abc4b0003285e2a688 (diff) | |
download | nextcloud-server-8c229684d759c80d7435f86bd69a01453cd8ba0d.tar.gz nextcloud-server-8c229684d759c80d7435f86bd69a01453cd8ba0d.zip |
Fix width and icon
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/components/setup/RecommendedApps.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/components/setup/RecommendedApps.vue b/core/src/components/setup/RecommendedApps.vue index 2b1b901a6be..4375c53a0fa 100644 --- a/core/src/components/setup/RecommendedApps.vue +++ b/core/src/components/setup/RecommendedApps.vue @@ -155,7 +155,7 @@ export default { .catch(error => logger.error('could not install recommended apps', { error })) }, customIcon(appId) { - if (!(appId in recommended)) { + if (!(appId in recommended) || !recommended[appId].icon) { logger.warn(`no app icon for recommended app ${appId}`) return imagePath('core', 'places/default-app-icon.svg') } @@ -174,7 +174,7 @@ export default { <style lang="scss" scoped> .body-login-container { - max-width: 290px; + } p.loading, p.loading-error { |