This commit is contained in:
ThatOneCalculator 2022-11-14 17:58:21 -08:00
parent dbe6d03d24
commit f9aaec00d2
2 changed files with 3 additions and 4 deletions

View file

@ -6,8 +6,7 @@
</MkTab>
<div v-if="origin === 'local'">
<template v-if="tag == null">
<!-- <MkFolder v-show="thereArePinnedUsers != null && thereArePinnedUsers == true" class="_gap" persist-key="explore-pinned-users"> -->
<MkFolder class="_gap" persist-key="explore-pinned-users">
<MkFolder v-show="thereArePinnedUsers != null && thereArePinnedUsers == true" class="_gap" persist-key="explore-pinned-users">
<template #header><i class="ph-bookmark-simple-bold ph-lg ph-fw ph-lg" style="margin-right: 0.5em;"></i>{{ i18n.ts.pinnedUsers }}</template>
<XUserList :pagination="pinnedUsers"/>
</MkFolder>

View file

@ -1,7 +1,7 @@
<template>
<div class="_formRoot">
<div v-if="saveButton == true">
<MkButton primary rounded @click="save">{{ i18n.ts.save }}</MkButton>
<MkButton primary @click="save">{{ i18n.ts.save }}</MkButton>
</div>
<br/>
<div class="llvierxe" :style="{ backgroundImage: $i.bannerUrl ? `url(${ $i.bannerUrl })` : null }">
@ -61,7 +61,7 @@
<FormSwitch v-model="profile.showTimelineReplies" class="_formBlock">{{ i18n.ts.flagShowTimelineReplies }}<template #caption>{{ i18n.ts.flagShowTimelineRepliesDescription }} {{ i18n.ts.reflectMayTakeTime }}</template></FormSwitch>
<FormSwitch v-model="profile.isBot" class="_formBlock">{{ i18n.ts.flagAsBot }}<template #caption>{{ i18n.ts.flagAsBotDescription }}</template></FormSwitch>
<div v-if="saveButton == true">
<MkButton primary rounded @click="save">{{ i18n.ts.save }}</MkButton>
<MkButton primary @click="save">{{ i18n.ts.save }}</MkButton>
</div>
</div>
</template>