Skip to content

Commit

Permalink
fix d045b96
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev committed Oct 25, 2023
1 parent 3fa061a commit 32a6762
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/frontend/src/pages/user/index.timeline.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ SPDX-License-Identifier: AGPL-3.0-only
<option value="all">{{ i18n.ts.all }}</option>
<option value="featured">{{ i18n.ts.featured }}</option>
<option value="files">{{ i18n.ts.withFiles }}</option>
<option value="reactions">{{ i18n.ts.reaction }}</option>
<option v-if="($i && ($i.id === user.id)) || user.publicReactions" value="reactions">{{ i18n.ts.reaction }}</option>
</MkTab>
</template>
<MkNotes v-if="include === 'featured'" :noGap="true" :pagination="featuredPagination" :class="$style.tl"/>
<XReactions v-else-if="include === 'reactions' && (($i && ($i.id === user.id)) || user.publicReactions)" :user="user"></XReactions>
<XReactions v-else-if="include === 'reactions'" :user="user"></XReactions>
<MkNotes v-else :noGap="true" :pagination="pagination" :class="$style.tl"/>
</MkStickyContainer>
</template>
Expand Down

0 comments on commit 32a6762

Please sign in to comment.