Fixed a stupid delete bug, reload on delete.

This commit is contained in:
BlipRanger
2023-07-13 01:12:57 -04:00
parent 35336b1646
commit 2b8db6350e
2 changed files with 11 additions and 1 deletions

View File

@@ -556,6 +556,8 @@ async function onDeleteClick() {
}
toastr.success(`Extension ${extensionName} deleted`);
showExtensionsDetails();
// reload the page to remove the extension from the list
location.reload();
}
};