Fixes #19375: Fix table configuration after applying a saved table config

This commit is contained in:
Jeremy Stretch 2025-05-02 10:40:11 -04:00
parent aea51df06c
commit d84c901951
3 changed files with 2 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

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