new(basic.gblib): FIND can now have more than one filter with multiple datatypes.

This commit is contained in:
Rodrigo Rodriguez 2021-08-03 18:29:44 -03:00
parent 24f4cc7f17
commit 0ef84a9b1e

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;