fix forms closing in timelines
This commit is contained in:
parent
3fb647b34b
commit
b7755314b1
2 changed files with 26 additions and 24 deletions
|
@ -40,6 +40,12 @@ const Timeline = {
|
|||
TimelineQuickSettings
|
||||
},
|
||||
computed: {
|
||||
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])
|
||||
},
|
||||
newStatusCount () {
|
||||
return this.timeline.newStatusCount
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue