Skip to content
This repository was archived by the owner on Jun 27, 2024. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
use get instead of replace method
  • Loading branch information
donmbelembe committed May 20, 2021
commit 3e614138631f27d3d12e9e30b77854f2647da086
2 changes: 1 addition & 1 deletion js/InteractsWithQueryBuilder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default {
if (this.$inertia) {
const query = this.queryBuilderString;

this.$inertia.replace(location.pathname + `?${query}`);
this.$inertia.get(location.pathname + `?${query}`, { preserveState: true });
}
},
},
Expand Down