mirror of https://github.com/apache/cloudstack.git
ui: Fix search with same parameters (#5367)
This commit is contained in:
parent
b3dca8ca27
commit
442f89cfdb
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue