Fix events pagination on tags page

Not a perfect fix because of a blinking issue, but works properly

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2021-08-20 19:05:17 +02:00
parent 5cf962fd8f
commit 846a4c376a
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 1 additions and 1 deletions

View File

@ -381,7 +381,7 @@ export default class Search extends Vue {
set eventPage(page: number) {
this.$router.push({
name: RouteName.SEARCH,
name: this.$route.name || RouteName.SEARCH,
query: { ...this.$route.query, eventPage: page.toString() },
});
}