We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a60287 commit f8fc9afCopy full SHA for f8fc9af
awesome_kanban/static/src/customer_list/customer_list.js
@@ -52,7 +52,7 @@ export class CustomerList extends Component {
52
this.customers.data,
53
(customer) => customer.display_name
54
);
55
- while (this.pager.offset > filteredCustomers.length) this.pager.offset -= this.pager.limit;
+ if(this.pager.offset > filteredCustomers.length) this.pager.offset = 0;
56
return filteredCustomers;
57
} else {
58
return this.customers.data;
0 commit comments