mirror of https://github.com/vector-im/riot-web
When removing a filter condition, try recalculate in case it wasn't the last one
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/21833/head
parent
113a0f1b5c
commit
0097ba24a4
|
@ -158,6 +158,7 @@ export class Algorithm extends EventEmitter {
|
||||||
filterCondition.off(FILTER_CHANGED, this.handleFilterChange.bind(this));
|
filterCondition.off(FILTER_CHANGED, this.handleFilterChange.bind(this));
|
||||||
if (this.allowedByFilter.has(filterCondition)) {
|
if (this.allowedByFilter.has(filterCondition)) {
|
||||||
this.allowedByFilter.delete(filterCondition);
|
this.allowedByFilter.delete(filterCondition);
|
||||||
|
this.recalculateFilteredRooms();
|
||||||
|
|
||||||
// If we removed the last filter, tell consumers that we've "updated" our filtered
|
// If we removed the last filter, tell consumers that we've "updated" our filtered
|
||||||
// view. This will trick them into getting the complete room list.
|
// view. This will trick them into getting the complete room list.
|
||||||
|
|
Loading…
Reference in New Issue