Skip to content

Commit

Permalink
FIX: Text starting with ‘<’ not visible in grid (#2223)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptomask committed Nov 21, 2023
1 parent 3ef3a0b commit aa3fc9a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const currentCellText = Memoized(() => {
if (text !== undefined && text !== null && text.length > 500){
text = text.substring(0, 500) + "...(TRUNCATED)";
}
if (text && currentProperty().multiline) {
if (text && currentProperty().isRichText) {
text = stripHtml(text).result;
}
if (Array.isArray(text)) {
Expand Down

0 comments on commit aa3fc9a

Please sign in to comment.