Skip to content

Commit

Permalink
fix: Always clear members on updating URL
Browse files Browse the repository at this point in the history
  • Loading branch information
smessie committed Nov 9, 2023
1 parent 23ffb42 commit 7760837
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ScholarlyBrowser.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ export default {
async urlUpdated() {
this.noEventLog = false;
this.loading = false;
this.members = [];
this.$router.push({query: {url: this.url}});
if (!this.url) {
this.members = [];
return;
}
Expand Down

0 comments on commit 7760837

Please sign in to comment.