Bladeren bron

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

Jeremy Stretch 11 maanden geleden
bovenliggende
commit
4868818576

File diff suppressed because it is too large
+ 0 - 0
netbox/project-static/dist/netbox.js


File diff suppressed because it is too large
+ 0 - 0
netbox/project-static/dist/netbox.js.map


+ 2 - 1
netbox/project-static/src/tableConfig.ts

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

Some files were not shown because too many files changed in this diff