Compare commits

..

No commits in common. "4cfcd48a2087a5843aadc45b2e79378eff9b4e68" and "514f2c548dc7ddb13554d776e97dc7990a6b139d" have entirely different histories.

View file

@ -806,13 +806,9 @@ function handleBackNavigation() {
router.go(-1);
} else {
if (empType.value === "") {
storeRegistry.isLeave
? router.push("/registry-retire-officer")
: router.push("/registry-officer");
router.push("/registry-officer");
} else if (empType.value === "-employee") {
storeRegistry.isLeave
? router.push("/registry-retire-employee")
: router.push("/registry-employee");
router.push("/registry-employee");
}
}
}