fix: delete resource use window location
This commit is contained in:
parent
d844026c29
commit
b469d2832d
3 changed files with 3 additions and 3 deletions
|
|
@ -107,7 +107,7 @@
|
|||
$status.application.initialLoading = true;
|
||||
try {
|
||||
await del(`/applications/${id}`, { id, force });
|
||||
return await goto(`/`, { replaceState: true });
|
||||
return await window.location.assign(`/`);
|
||||
} catch (error) {
|
||||
if (error.message.startsWith(`Command failed: SSH_AUTH_SOCK=/tmp/coolify-ssh-agent.pid`)) {
|
||||
forceDelete = true;
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@
|
|||
$status.database.initialLoading = true;
|
||||
try {
|
||||
await del(`/databases/${database.id}`, { id: database.id, force });
|
||||
return await goto('/', { replaceState: true });
|
||||
return await window.location.assign('/');
|
||||
} catch (error) {
|
||||
return errorNotification(error);
|
||||
} finally {
|
||||
|
|
|
|||
|
|
@ -85,7 +85,7 @@
|
|||
if (service.type && $status.service.isRunning)
|
||||
await post(`/services/${service.id}/${service.type}/stop`, {});
|
||||
await del(`/services/${service.id}`, { id: service.id });
|
||||
return await goto(`/`, { replaceState: true });
|
||||
return await window.location.assign(`/`);
|
||||
} catch (error) {
|
||||
return errorNotification(error);
|
||||
} finally {
|
||||
|
|
|
|||
Loading…
Reference in a new issue