Fixed validation on navigate back on browser send add edit

This commit is contained in:
Andre Rosado 2024-06-12 17:50:28 +01:00
parent 4d27824064
commit 15211c73fe
No known key found for this signature in database
GPG Key ID: 99F68267CCD45AA9
1 changed files with 4 additions and 1 deletions

View File

@ -124,7 +124,10 @@ export class SendAddEditComponent extends BaseAddEditComponent {
cancel() {
// If true, the window was pop'd out on the add-send page. location.back will not work
if ((window as any).previousPopupUrl.startsWith("/add-send")) {
if (
(window as any).previousPopupUrl == null ||
!(window as any).previousPopupUrl.startsWith("/add-send")
) {
// FIXME: Verify that this floating promise is intentional. If it is, add an explanatory comment and ensure there is proper error handling.
// eslint-disable-next-line @typescript-eslint/no-floating-promises
this.router.navigate(["tabs/send"]);