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
3 changed files with 5 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

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;
}
});
}