set limit customer list to 100
This commit is contained in:
@ -170,7 +170,7 @@ const AddDialog = () => {
|
|||||||
sorting = sorting.length == 0 ? [{ id: 'created_at', desc: false }] : sorting;
|
sorting = sorting.length == 0 ? [{ id: 'created_at', desc: false }] : sorting;
|
||||||
|
|
||||||
const query: any = {
|
const query: any = {
|
||||||
limit: 5,
|
limit: 100,
|
||||||
page: 1,
|
page: 1,
|
||||||
with_deleted: false,
|
with_deleted: false,
|
||||||
order_field: sorting[0].id,
|
order_field: sorting[0].id,
|
||||||
|
|||||||
@ -133,7 +133,7 @@ const EditDialog = () => {
|
|||||||
sorting = sorting.length == 0 ? [{ id: 'created_at', desc: false }] : sorting;
|
sorting = sorting.length == 0 ? [{ id: 'created_at', desc: false }] : sorting;
|
||||||
|
|
||||||
const query: any = {
|
const query: any = {
|
||||||
limit: 5,
|
limit: 100,
|
||||||
page: 1,
|
page: 1,
|
||||||
with_deleted: false,
|
with_deleted: false,
|
||||||
order_field: sorting[0].id,
|
order_field: sorting[0].id,
|
||||||
|
|||||||
Reference in New Issue
Block a user