fix: page cursor and pagination (#5541)

* fix: search results not displaying on first page
* fix: page cursor position stays the same between page selection
This commit is contained in:
Sandhya Veludandi 2022-08-14 19:07:09 -04:00 committed by GitHub
parent fdeb4a4847
commit 4e5da41d35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -105,6 +105,9 @@ export default {
} else { } else {
this.searchIsLoading = true this.searchIsLoading = true
} }
},
results() {
this.cursor = 0
} }
}, },
mounted() { mounted() {
@ -153,6 +156,9 @@ export default {
skip() { skip() {
return !this.search || this.search.length < 2 return !this.search || this.search.length < 2
}, },
result() {
this.pagination = 1
},
update: (data) => _.get(data, 'pages.search', {}), update: (data) => _.get(data, 'pages.search', {}),
watchLoading (isLoading) { watchLoading (isLoading) {
this.searchIsLoading = isLoading this.searchIsLoading = isLoading