2
0
mirror of https://github.com/VinylDNS/vinyldns synced 2025-08-31 14:25:30 +00:00

Fix for dns edit page after submit

This commit is contained in:
Jay07GIT
2024-08-22 11:52:48 +05:30
parent ab57f9f4a2
commit 96bf137172

View File

@@ -38,8 +38,8 @@
})
let promis = $http.post(url, data, {headers: utilityService.getCsrfHeader()});
// Hide loader when api gets response
promis.then(()=>loader.modal("hide"))
.catch(()=>loader.modal("hide"))
promis.then(()=>loader.modal("hide")
,()=>loader.modal("hide"))
return promis
};