Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2020-01-17 14:57:06 +0300
committernpmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>2020-01-17 15:14:33 +0300
commit8c229684d759c80d7435f86bd69a01453cd8ba0d (patch)
tree8973d85e8964b7ad67bb42c97c8babe58e7a3640 /core/src
parentf012f0a3538985860bddf8abc4b0003285e2a688 (diff)
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.vue4
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 {