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