Browse Source

fix(AdvancedTable): Changing page size doesnt update current page

Owen Diffey 3 năm trước cách đây
mục cha
commit
004d3aa753
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      frontend/src/components/AdvancedTable.vue

+ 1 - 0
frontend/src/components/AdvancedTable.vue

@@ -916,6 +916,7 @@ export default {
 			);
 		},
 		changePageSize() {
+			this.page = 1;
 			this.getData();
 			this.storeTableSettings();
 		},