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

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

View file

@ -128,10 +128,10 @@ export class SystemKeywords {
const region = result.regions[i]; const region = result.regions[i];
for (let j = 0; j < region.lines.length; j++) { for (let j = 0; j < region.lines.length; j++) {
const line = region.lines.words[j]; const line = region.lines[j];
for (let k = 0; k < line.words.length; k++) { for (let k = 0; k < line.words.length; k++) {
final += line.words[k].text; final += `${line.words[k].text} `;
} }
} }
} }