fix(basic.gblib): update ChatServices.ts #420

Closed
eltociear wants to merge 2540 commits from patch-1 into main
Showing only changes of commit b4ba7df585 - Show all commits

View file

@ -2156,7 +2156,7 @@ export class SystemKeywords {
const paged = await t.findAll(
{offset:page * pageSize, limit:pageSize, subquery:false, where:{}}
);
rows = [paged, ...rows];
rows = [...paged, ...rows];
page++;
count = paged.length;
}