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

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();
}
}
}