slight performance improvements
This commit is contained in:
parent
b561a51ed9
commit
fc9e28ca72
4 changed files with 33 additions and 4 deletions
|
|
@ -47,6 +47,10 @@ export class SavedFeedsModel {
|
|||
return this.feeds.filter(f => !this.isPinned(f))
|
||||
}
|
||||
|
||||
get all() {
|
||||
return this.pinned.concat(this.unpinned)
|
||||
}
|
||||
|
||||
get pinnedFeedNames() {
|
||||
return this.pinned.map(f => f.displayName)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue