diff --git a/src/modules/00_support/components/FormChat.vue b/src/modules/00_support/components/FormChat.vue index e14ad797a..f5ebd2b01 100644 --- a/src/modules/00_support/components/FormChat.vue +++ b/src/modules/00_support/components/FormChat.vue @@ -16,7 +16,7 @@ const { scrollContainer } = storeToRefs(store); onMounted(async () => { await store.fetchIssue(); - totalPageIssue.value = Math.ceil((store.currentTotalIssue || 0) / 6); + totalPageIssue.value = Math.ceil((store.currentTotalIssue || 0) / 30); }); const onLoad = (async (_: any, done: any) => { @@ -89,54 +89,11 @@ const onLoad = (async (_: any, done: any) => { - - -
+
{ async function fetchIssue(page: number = 1) { showLoader(); const res = await http - .get(`${config.API.supportIssue}?page=${page}&pageSize=6`) + .get(`${config.API.supportIssue}?page=${page}&pageSize=30`) .catch((err) => { messageError($q, err); })