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

This commit is contained in:
Jeremy Stretch 2025-05-02 13:13:28 -04:00 committed by GitHub
parent 7cd5dc0c84
commit 4868818576
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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;
}
});
}