fix tutorial

This commit is contained in:
naskya 2023-06-03 15:24:16 +09:00
parent 0a99366298
commit 0eb65d0f12
No known key found for this signature in database
GPG key ID: 164DFF24E2D40139

View file

@ -140,26 +140,26 @@
</template> </template>
</I18n> </I18n>
</li> </li>
<li v-if="timelines.includes('recommended')"> <li v-if="timelines.includes('social')">
<I18n <I18n
:src="i18n.ts._tutorial.step5_5" :src="i18n.ts._tutorial.step5_5"
tag="div" tag="div"
> >
<template #icon> <template #icon>
<i <i
class="ph-thumbs-up ph-bold ph-lg" class="ph-handshake ph-bold ph-lg"
/> />
</template> </template>
</I18n> </I18n>
</li> </li>
<li v-if="timelines.includes('social')"> <li v-if="timelines.includes('recommended')">
<I18n <I18n
:src="i18n.ts._tutorial.step5_6" :src="i18n.ts._tutorial.step5_6"
tag="div" tag="div"
> >
<template #icon> <template #icon>
<i <i
class="ph-handshake ph-bold ph-lg" class="ph-thumbs-up ph-bold ph-lg"
/> />
</template> </template>
</I18n> </I18n>
@ -235,12 +235,12 @@ let timelines = ["home"];
if (isLocalTimelineAvailable) { if (isLocalTimelineAvailable) {
timelines.push("local"); timelines.push("local");
} }
if (isRecommendedTimelineAvailable) {
timelines.push("recommended");
}
if (isLocalTimelineAvailable) { if (isLocalTimelineAvailable) {
timelines.push("social"); timelines.push("social");
} }
if (isRecommendedTimelineAvailable) {
timelines.push("recommended");
}
if (isGlobalTimelineAvailable) { if (isGlobalTimelineAvailable) {
timelines.push("global"); timelines.push("global");
} }