Close verif. page when verifying/blacklisting

This commit is contained in:
miruka 2020-07-08 16:38:26 -04:00
parent d566727698
commit 789e9c7da8
2 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
# TODO # TODO
- trust/blacklist buttons
- reload devices when needed - reload devices when needed
- get devices for members with no shared E2E room? - get devices for members with no shared E2E room?
- keyboard controls - keyboard controls
- remove useless Base imports in Base components - remove useless Base imports in Base components
- HTile enter trigger leftClicked() - HTile enter trigger leftClicked()
- HMenuItem: use onTriggered, not onClicked
## Refactoring ## Refactoring

View File

@ -31,7 +31,7 @@ HFlickableColumnPage {
[deviceOwner, deviceId], [deviceOwner, deviceId],
() => { () => {
loading = false loading = false
page.verified() stackView.pop()
} }
) )
} }
@ -49,7 +49,7 @@ HFlickableColumnPage {
[deviceOwner, deviceId], [deviceOwner, deviceId],
() => { () => {
loading = false loading = false
page.blacklisted() stackView.pop()
} }
) )
} }