fix some more warnings
This commit is contained in:
parent
c57af7e242
commit
bdd240a230
2 changed files with 3 additions and 3 deletions
|
@ -43,8 +43,8 @@ const Timeline = {
|
|||
filteredVisibleStatuses () {
|
||||
return this.timeline.visibleStatuses.filter(status => this.timelineName !== 'user' || (status.id >= this.timeline.minId && status.id <= this.timeline.maxId))
|
||||
},
|
||||
filteredPinnedStatusesId () {
|
||||
return this.pinnedStatusIds.filter(statusId => this.timeline.statusesObject[statusId])
|
||||
filteredPinnedStatusIds () {
|
||||
return (this.pinnedStatusIds || []).filter(statusId => this.timeline.statusesObject[statusId])
|
||||
},
|
||||
newStatusCount () {
|
||||
return this.timeline.newStatusCount
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue