Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Commit fafa9c9

Browse files
author
Shammamah Hossain
committed
Revert "Trim filter values."
This reverts commit aae4907.
1 parent 6140a88 commit fafa9c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dash-table/syntax-tree/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ export const getSingleColumnMap = (
4949
}
5050

5151
if (s.lexeme.present && s.lexeme.present(s) === RelationalOperator.Equal) {
52-
map.set(sanitizedColumnId, new SingleColumnSyntaxTree(`${s.right.value.trim()}`, column));
52+
map.set(sanitizedColumnId, new SingleColumnSyntaxTree(`${s.right.value}`, column));
5353
} else {
54-
map.set(sanitizedColumnId, new SingleColumnSyntaxTree(`${s.value.trim()} ${s.right.value.trim()}`, column));
54+
map.set(sanitizedColumnId, new SingleColumnSyntaxTree(`${s.value} ${s.right.value}`, column));
5555
}
5656
}
5757
}, statements);

0 commit comments

Comments
 (0)