You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix issue with line spacing in Code Grid report on Windows, due
to the .split method being translated by StringLike.split into
a regex [\r\n] which will cause 2 lines in the resultant array.
Issue is resolved if treating as a single String, which will
invoke the Java String.split(String regex) method, and correctly
treat the "\r\n" as a single expression. This should work correctly
on other platforms with a single character line ending (Unix and Mac).
0 commit comments