Toasts for new, unverified sessions
Fixes https://github.com/vector-im/riot-web/issues/11218
This commit is contained in:
parent
8cdce8fee0
commit
9e43abaf3a
7 changed files with 169 additions and 3 deletions
|
@ -31,6 +31,10 @@ export default class ToastStore extends EventEmitter {
|
|||
this._toasts = [];
|
||||
}
|
||||
|
||||
reset() {
|
||||
this._toasts = [];
|
||||
}
|
||||
|
||||
addOrReplaceToast(newToast) {
|
||||
const oldIndex = this._toasts.findIndex(t => t.key === newToast.key);
|
||||
if (oldIndex === -1) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue