Small tweaks

- Update local webUI to refresh when joining server to clear modal
- Updated client webUI page title
- Re-added join modal to node page (client & server)
- updated join modal to use node.nearbySystems
This commit is contained in:
Logan Cusano
2023-07-22 15:01:48 -04:00
parent ec091c0017
commit 8a0baa5bc9
6 changed files with 11 additions and 7 deletions

View File

@@ -253,8 +253,8 @@ function joinServer() {
const responseObject = JSON.parse(Http.responseText)
console.log(Http.status);
console.log(responseObject);
createToast(`${responseObject.name} will join shortly`, { showNow: true });
$("#joinModal").modal('toggle');
createToast(`${responseObject.name} will join shortly`);
location.reload();
}
}