We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94c0003 commit 26feaf7Copy full SHA for 26feaf7
apps/frontend/src/pages/user/[id].vue
@@ -318,7 +318,10 @@
318
</span>
319
<span v-else class="text">{{ formatMessage(messages.profileNoProjectsLabel) }}</span>
320
</div>
321
- <div v-if="['collections'].includes(route.params.projectType)" class="collections-grid">
+ <div
322
+ v-if="!route.params.projectType || route.params.projectType === 'collections'"
323
+ class="collections-grid"
324
+ >
325
<nuxt-link
326
v-for="collection in collections.sort(
327
(a, b) => new Date(b.created) - new Date(a.created),
@@ -902,6 +905,7 @@ export default defineNuxtComponent({
902
905
}
903
906
904
907
gap: var(--gap-md);
908
+ margin-bottom: var(--gap-md);
909
910
.collection-item {
911
display: flex;
0 commit comments