Browse Source
Merge pull request #22866 from nextcloud/fix/recommendations-alt
Fix recommendation design details
pull/22884/head
Morris Jobke
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
4 additions and
4 deletions
-
core/js/dist/recommendedapps.js
-
core/js/dist/recommendedapps.js.map
-
core/src/components/setup/RecommendedApps.vue
|
|
|
@ -32,11 +32,11 @@ |
|
|
|
{{ t('core', 'Installing apps …') }} |
|
|
|
</p> |
|
|
|
<div v-for="app in recommendedApps" :key="app.id" class="app"> |
|
|
|
<img :src="customIcon(app.id)" :alt="t('core', 'Nextcloud {app}', { app: app.name })"> |
|
|
|
<img :src="customIcon(app.id)" alt=""> |
|
|
|
<div class="info"> |
|
|
|
<h3> |
|
|
|
{{ app.name }} |
|
|
|
<span v-if="app.loading" class="icon icon-loading-small" /> |
|
|
|
<span v-if="app.loading" class="icon icon-loading-small-dark" /> |
|
|
|
<span v-else-if="app.active" class="icon icon-checkmark-white" /> |
|
|
|
</h3> |
|
|
|
<p v-html="customDescription(app.id)" /> |
|
|
|
|