diff options
| author | marcin mikołajczak <me@mkljczk.pl> | 2024-01-14 06:23:30 +0000 |
|---|---|---|
| committer | marcin mikołajczak <me@mkljczk.pl> | 2024-01-14 06:23:30 +0000 |
| commit | dbe9da0f09d9471e9a87e564bb18412f937b8542 (patch) | |
| tree | 9e628be15bda940c59131da1d56024ba22cf7973 /src/components/user_profile/user_profile.js | |
| parent | 6c4c8fe51f0e2c4ce55f5915a2bc5434aef5e5e7 (diff) | |
| parent | ae4e360157234a352f71c90e84b9861ee572472e (diff) | |
Merge branch 'develop' into 'quotes-count'
# Conflicts:
# src/services/api/api.service.js
Diffstat (limited to 'src/components/user_profile/user_profile.js')
| -rw-r--r-- | src/components/user_profile/user_profile.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/user_profile/user_profile.js b/src/components/user_profile/user_profile.js index acb612ed..751bfd5a 100644 --- a/src/components/user_profile/user_profile.js +++ b/src/components/user_profile/user_profile.js @@ -80,6 +80,9 @@ const UserProfile = { followersTabVisible () { return this.isUs || !this.user.hide_followers }, + favoritesTabVisible () { + return this.isUs || !this.user.hide_favorites + }, formattedBirthday () { const browserLocale = localeService.internalToBrowserLocale(this.$i18n.locale) return this.user.birthday && new Date(Date.parse(this.user.birthday)).toLocaleDateString(browserLocale, { timeZone: 'UTC', day: 'numeric', month: 'long', year: 'numeric' }) @@ -103,6 +106,8 @@ const UserProfile = { startFetchingTimeline('user', userId) startFetchingTimeline('media', userId) if (this.isUs) { + startFetchingTimeline('favorites') + } else if (!this.user.hide_favorites) { startFetchingTimeline('favorites', userId) } // Fetch all pinned statuses immediately |
