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

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

View file

@ -2327,7 +2327,12 @@ export class SystemKeywords {
}
});
if (value != valueFound && columnNameFound) {
const equals =
typeof (value) === 'string' && typeof (valueFound) === 'string' ?
value?.toLowerCase() != valueFound?.toLowerCase() :
value != valueFound;
if (equals && columnNameFound) {
if (storage) {