Skip to content

Commit 442f89c

Browse files
authored
ui: Fix search with same parameters (#5367)
1 parent b3dca8c commit 442f89c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ui/src/views/AutogenView.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1150,8 +1150,8 @@ export default {
11501150
Object.assign(query, opts)
11511151
}
11521152
}
1153-
query.page = 1
1154-
query.pagesize = this.pageSize
1153+
query.page = '1'
1154+
query.pagesize = String(this.pageSize)
11551155
if (JSON.stringify(query) === JSON.stringify(this.$route.query)) {
11561156
this.fetchData(query)
11571157
return

0 commit comments

Comments
 (0)