UI #5

Merged
derek merged 10 commits from UI into main 2025-07-20 22:09:52 -07:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit 2bf8909930 - Show all commits
@@ -69,7 +69,7 @@ export class CompanyConnectComponent {
this.router.navigate([""]); this.router.navigate([""]);
}, },
error: err => { error: err => {
alert("Failed to create the job listing. Err: " + err.error); this.ErrorMsg = err.error;
} }
}); });
} }
@@ -45,7 +45,7 @@ export class JobEditComponent {
window.location.reload(); window.location.reload();
}, },
error: err => { error: err => {
alert("Failed to delete the job listing. Try again"); this.ErrorMsg = err.error;
} }
}); });
} }
@@ -45,7 +45,7 @@ export class JobsComponent {
window.location.reload(); window.location.reload();
}, },
error: err => { error: err => {
alert("Failed to delete the job listing. Try again"); this.ErrorMsg = err.error;
} }
}); });
} }