From 4826d7254954390f13b1aa33e740e4f4d3598908 Mon Sep 17 00:00:00 2001
From: taehoon
Date: Fri, 19 Jul 2019 21:48:09 -0400
Subject: [PATCH] update prop name
---
src/components/timeline/timeline.js | 6 +++---
src/components/user_profile/user_profile.vue | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/components/timeline/timeline.js b/src/components/timeline/timeline.js
index 55602c7b..7c8a761a 100644
--- a/src/components/timeline/timeline.js
+++ b/src/components/timeline/timeline.js
@@ -12,7 +12,7 @@ const Timeline = {
'tag',
'embedded',
'count',
- 'excludedStatusIds'
+ 'pinnedStatusIds'
],
data () {
return {
@@ -42,8 +42,8 @@ const Timeline = {
}
},
statuses () {
- if (this.excludedStatusIds && this.excludedStatusIds.length > 0) {
- return this.timeline.visibleStatuses && this.timeline.visibleStatuses.filter(status => !this.excludedStatusIds.includes(status.id))
+ if (this.pinnedStatusIds && this.pinnedStatusIds.length > 0) {
+ return this.timeline.visibleStatuses && this.timeline.visibleStatuses.filter(status => !this.pinnedStatusIds.includes(status.id))
} else {
return this.timeline.visibleStatuses
}
diff --git a/src/components/user_profile/user_profile.vue b/src/components/user_profile/user_profile.vue
index 1723cffa..81c63d7e 100644
--- a/src/components/user_profile/user_profile.vue
+++ b/src/components/user_profile/user_profile.vue
@@ -34,6 +34,7 @@
:timeline="timeline"
:timeline-name="'user'"
:user-id="userId"
+ :pinned-status-ids="user.pinnedStatuseIds"
/>