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