This commit is contained in:
nelle 2024-09-18 15:59:37 -06:00
parent b777c5f78e
commit 2fdff79ebc

View file

@ -1,7 +1,7 @@
<template>
<MkStickyContainer>
<template #header><MkPageHeader /></template>
<MkSpacer :content-max="800">
<MkSpacer :content-max="4096">
<MkPagination ref="pagingComponent" :pagination="pagination">
<template #empty>
<div class="_fullinfo">
@ -44,7 +44,7 @@ import {instance} from "@/instance";
const pagination = {
endpoint: "i/favorites" as const,
limit: 500,
limit: 10,
};
const pagingComponent = ref<InstanceType<typeof MkPagination>>();