Skip to content

Commit

Permalink
refactor: Fix some ui glitch
Browse files Browse the repository at this point in the history
  • Loading branch information
ci010 committed Mar 29, 2024
1 parent 5800e6c commit 4f18024
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -8,7 +8,7 @@
<v-card
rounded
outlined
class="max-h-200 visible-scroll flex flex-col overflow-auto"
class="visible-scroll flex max-h-[90vh] flex-col overflow-auto"
>
<div
class="mx-5 mt-3 grid flex-grow-0 grid-cols-3 gap-5"
Expand Down
2 changes: 1 addition & 1 deletion xmcl-keystone-ui/src/views/StoreProjectFeedTheBeast.vue
Expand Up @@ -56,7 +56,7 @@ const { data: allVersions, isValidating: loadingVersions } = useSWRV(computed(()
const ver = await getSWRV(getFeedTheBeastVersionModel(ref(p.id), ref(v)), config)
return ver
}))
return result.filter((v): v is FTBModpackVersionManifest => !!v)
return result.filter((v): v is FTBModpackVersionManifest => !!v).toReversed()
})
const versions = computed(() => {
return allVersions.value?.map(ver => {
Expand Down

0 comments on commit 4f18024

Please sign in to comment.