fix
This commit is contained in:
parent
8229e618e9
commit
468b14be54
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "calckey",
|
"name": "calckey",
|
||||||
"version": "13.2.0-dev34",
|
"version": "13.2.0-dev35",
|
||||||
"codename": "aqua",
|
"codename": "aqua",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
@ -114,7 +114,7 @@ const keymap = {
|
||||||
t: focus,
|
t: focus,
|
||||||
};
|
};
|
||||||
|
|
||||||
let timelines = ['forYou']
|
let timelines = ['forYou'];
|
||||||
|
|
||||||
if (isRecommendedTimelineAvailable || isGlobalTimelineAvailable) {
|
if (isRecommendedTimelineAvailable || isGlobalTimelineAvailable) {
|
||||||
timelines.push('explore');
|
timelines.push('explore');
|
||||||
|
@ -134,6 +134,10 @@ if (isGlobalTimelineAvailable) {
|
||||||
discoverTimelines.push('global');
|
discoverTimelines.push('global');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let tab = $ref(timelines[0]);
|
||||||
|
watch($$(tab), () => (syncSlide(timelines.indexOf(tab))));
|
||||||
|
|
||||||
|
|
||||||
const hotPagination = {
|
const hotPagination = {
|
||||||
endpoint: 'notes/featured' as const,
|
endpoint: 'notes/featured' as const,
|
||||||
limit: 20,
|
limit: 20,
|
||||||
|
|
Loading…
Reference in New Issue