ui: Fix search with same parameters (#5367)

This commit is contained in:
davidjumani 2021-08-27 16:27:42 +05:30 committed by GitHub
parent b3dca8ca27
commit 442f89cfdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1150,8 +1150,8 @@ export default {
Object.assign(query, opts)
}
}
query.page = 1
query.pagesize = this.pageSize
query.page = '1'
query.pagesize = String(this.pageSize)
if (JSON.stringify(query) === JSON.stringify(this.$route.query)) {
this.fetchData(query)
return