Clear assigned table config when resetting the configuration

This commit is contained in:
Jeremy Stretch 2025-04-23 13:28:20 -04:00
parent a3a9cef52f
commit 02103ab26e
3 changed files with 2 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@ -80,7 +80,8 @@ function handleSubmit(event: Event): void {
const toast = createToast('danger', 'Error Resetting Table Configuration', res.error); const toast = createToast('danger', 'Error Resetting Table Configuration', res.error);
toast.show(); toast.show();
} else { } else {
location.reload(); // Strip any URL query parameters & reload the page
window.location.href = window.location.origin + window.location.pathname;
} }
}); });
return; return;