Explorar el Código

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

Owen Diffey hace 3 años
padre
commit
004d3aa753
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  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();
 		},