diff --git a/changes/changelog.d/1197.bugfix b/changes/changelog.d/1197.bugfix new file mode 100644 index 000000000..14b33bc30 --- /dev/null +++ b/changes/changelog.d/1197.bugfix @@ -0,0 +1 @@ +Ensure search page reloads if another search is submitted in the sidebar (#1197) \ No newline at end of file diff --git a/front/src/views/Search.vue b/front/src/views/Search.vue index 002628603..5ea8ebcc0 100644 --- a/front/src/views/Search.vue +++ b/front/src/views/Search.vue @@ -231,6 +231,11 @@ export default { async page () { this.updateQueryString() await this.search() + }, + "$route.query.q": async function (v) { + this.query = v + this.updateQueryString() + await this.search() } } }