Skip to content

Commit

Permalink
fix(core/reports): use non-strict equality in indicators language
Browse files Browse the repository at this point in the history
  • Loading branch information
robzan8 committed May 2, 2023
1 parent 7e7306e commit c33aa93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/core/reports/src/xls-report/hindikit-parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -292,10 +292,10 @@ function parseExpression(revToks: Token[], expectedEnd: TokenType): string {
}
throw unexpectedTokenError(tok, revToks);
case TokenType.Equal:
js += ' === ';
js += ' == ';
break;
case TokenType.NotEqual:
js += ' !== ';
js += ' != ';
break;
default:
throw unexpectedTokenError(tok, revToks);
Expand Down

0 comments on commit c33aa93

Please sign in to comment.