Skip to content
Snippets Groups Projects
Unverified Commit e392525c authored by Morris Jobke's avatar Morris Jobke Committed by GitHub
Browse files

Merge pull request #22866 from nextcloud/fix/recommendations-alt

Fix recommendation design details
parents 498684ef 1661f325
No related branches found
No related tags found
No related merge requests found
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
...@@ -32,11 +32,11 @@ ...@@ -32,11 +32,11 @@
{{ t('core', 'Installing apps …') }} {{ t('core', 'Installing apps …') }}
</p> </p>
<div v-for="app in recommendedApps" :key="app.id" class="app"> <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"> <div class="info">
<h3> <h3>
{{ app.name }} {{ 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" /> <span v-else-if="app.active" class="icon icon-checkmark-white" />
</h3> </h3>
<p v-html="customDescription(app.id)" /> <p v-html="customDescription(app.id)" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment