4
1
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-02-11 17:55:51 +00:00

Fix password field is disabled after relogin on latest electron

This commit is contained in:
AlphaX-Projects 2022-02-13 15:56:37 +01:00 committed by GitHub
parent 263b0e5c5a
commit 8b0b88b4ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -243,7 +243,8 @@ class SidenavMenu extends connect(store)(LitElement) {
async logout(e) {
if(window.confirm('Are you sure you want to logout?')) {
store.dispatch(doLogout())
store.dispatch(doLogout());
window.location.reload();
}
}
}