mirror of
https://github.com/vector-im/element-web.git
synced 2026-02-26 10:01:09 +01:00
tweak
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
254ed4b1b6
commit
3dade4e759
@ -70,13 +70,15 @@ export default class ToastStore extends EventEmitter {
|
||||
|
||||
dismissToast(key) {
|
||||
console.log("DEBUG dismissToast", key);
|
||||
if (this.toasts[0] && this.toasts[0].key === key) {
|
||||
this.countSeen++;
|
||||
}
|
||||
|
||||
const length = this.toasts.length;
|
||||
this.toasts = this.toasts.filter(t => t.key !== key);
|
||||
if (length !== this.toasts.length) {
|
||||
if (this.toasts.length === 0) {
|
||||
this.countSeen = 0;
|
||||
} else {
|
||||
this.countSeen++;
|
||||
}
|
||||
|
||||
this.emit('update');
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user