()
| 133 | } |
| 134 | |
| 135 | async refresh() { |
| 136 | try { |
| 137 | this.refreshing = true; |
| 138 | await this.reload(this.filter); |
| 139 | } finally { |
| 140 | this.refreshing = false; |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | async applyFilter(filter: (send: SendView) => boolean = null) { |
| 145 | this.filter = filter; |