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

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

View file

@ -421,7 +421,7 @@ export class SystemKeywords {
case 'number':
switch (filter.operator) {
case '=':
if (result && result.trim() === filter.value.trim()) {
if (Number.parseInt(result) === filter.value) {
filterAcceptCount++;
}
break;