Skip to content

Commit

Permalink
Merge pull request #150 from FreeNowOrg/dev
Browse files Browse the repository at this point in the history
fix: Artwork not show up
  • Loading branch information
AlPha5130 authored Dec 30, 2024
2 parents 96c2404 + 8303f03 commit 02d48cc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,5 @@
"vercel": "^39.2.2",
"vite": "^6.0.6"
},
"packageManager": "[email protected].1"
"packageManager": "[email protected].2"
}
10 changes: 5 additions & 5 deletions src/components/ArtworksList/ArtworkLargeList.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template lang="pug">
Waterfall.artwork-large-list(
ref='waterfallRef',
:list='artworks',
:breakpoints='{ 9999: { rowPerView: 6 }, 1600: { rowPerView: 5 }, 1200: { rowPerView: 4 }, 750: { rowPerView: 3 }, 640: { rowPerView: 2 }, 380: { rowPerView: 1 } }'
:breakpoints='{ 9999: { rowPerView: 6 }, 1600: { rowPerView: 5 }, 1200: { rowPerView: 4 }, 750: { rowPerView: 3 }, 640: { rowPerView: 2 }, 380: { rowPerView: 1 } }',
:list='artworks'
ref='waterfallRef'
)
template(#item='{ item, index }')
ArtworkLargeCard(:illust='item[0]', :rank='item[1]' :key='index')
template(#default='{ item, index }')
ArtworkLargeCard(:illust='item[0]', :key='index', :rank='item[1]')
</template>

<script lang="ts" setup>
Expand Down

0 comments on commit 02d48cc

Please sign in to comment.