disable auto load for channels pagination
This commit is contained in:
parent
20c424d18b
commit
2b9c880719
|
@ -49,8 +49,6 @@
|
||||||
<MkButton
|
<MkButton
|
||||||
large
|
large
|
||||||
primary
|
primary
|
||||||
gradate
|
|
||||||
rounded
|
|
||||||
@click="search"
|
@click="search"
|
||||||
class="_gap"
|
class="_gap"
|
||||||
>{{ i18n.ts.search }}</MkButton
|
>{{ i18n.ts.search }}</MkButton
|
||||||
|
@ -71,6 +69,7 @@
|
||||||
<MkPagination
|
<MkPagination
|
||||||
v-slot="{ items }"
|
v-slot="{ items }"
|
||||||
:pagination="featuredPagination"
|
:pagination="featuredPagination"
|
||||||
|
:disable-auto-load="true"
|
||||||
>
|
>
|
||||||
<MkChannelPreview
|
<MkChannelPreview
|
||||||
v-for="channel in items"
|
v-for="channel in items"
|
||||||
|
@ -86,6 +85,7 @@
|
||||||
<MkPagination
|
<MkPagination
|
||||||
v-slot="{ items }"
|
v-slot="{ items }"
|
||||||
:pagination="followingPagination"
|
:pagination="followingPagination"
|
||||||
|
:disable-auto-load="true"
|
||||||
>
|
>
|
||||||
<MkChannelPreview
|
<MkChannelPreview
|
||||||
v-for="channel in items"
|
v-for="channel in items"
|
||||||
|
@ -104,6 +104,7 @@
|
||||||
<MkPagination
|
<MkPagination
|
||||||
v-slot="{ items }"
|
v-slot="{ items }"
|
||||||
:pagination="ownedPagination"
|
:pagination="ownedPagination"
|
||||||
|
:disable-auto-load="true"
|
||||||
>
|
>
|
||||||
<MkChannelPreview
|
<MkChannelPreview
|
||||||
v-for="channel in items"
|
v-for="channel in items"
|
||||||
|
|
Loading…
Reference in New Issue