diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2020-01-17 12:57:06 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2020-01-24 10:38:39 +0100 |
commit | 575b49a0e4d622610d3a1c4302415e0fd0a7f774 (patch) | |
tree | d2e0e4ffdaec41c5c97a019b64eb71b39b63a4a2 /core/src/components | |
parent | 607c55aaaab7519f8aa778735cd6f1c355728395 (diff) | |
download | nextcloud-server-575b49a0e4d622610d3a1c4302415e0fd0a7f774.tar.gz nextcloud-server-575b49a0e4d622610d3a1c4302415e0fd0a7f774.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/components')
-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 { |