Reset page when searching for new tag (#550)

This commit is contained in:
Ryan Welch 2023-01-10 11:46:13 +00:00 committed by GitHub
parent 27c2fc74be
commit 1b03cc48d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -305,6 +305,7 @@ export default {
if (tagName === "*") {
this.search = excludeMode ? "-tag:*" : "tag:*";
this.page = 1;
this.loadData();
return;
}
@ -344,6 +345,7 @@ export default {
}
}
this.page = 1;
this.loadData();
},
showDialogAdd() {