prevent showing pinned statuses twice

This commit is contained in:
taehoon 2019-05-26 14:15:35 -04:00
parent 4827e4d972
commit 7f9feacd26
3 changed files with 11 additions and 2 deletions

View file

@ -11,7 +11,8 @@ const Timeline = {
'userId',
'tag',
'embedded',
'count'
'count',
'excludedStatusIds'
],
data () {
return {
@ -39,6 +40,13 @@ const Timeline = {
body: ['timeline-body'].concat(!this.embedded ? ['panel-body'] : []),
footer: ['timeline-footer'].concat(!this.embedded ? ['panel-footer'] : [])
}
},
statuses () {
if (this.excludedStatusIds && this.excludedStatusIds.length > 0) {
return this.timeline.visibleStatuses && this.timeline.visibleStatuses.filter(status => !this.excludedStatusIds.includes(status.id))
} else {
return this.timeline.visibleStatuses
}
}
},
components: {