mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-31 19:12:44 +00:00
(fix) we now respect the cr/lf in event's description (#3228)
This commit is contained in:
@@ -581,7 +581,7 @@ function _parseEvent(event) {
|
||||
|
||||
if (event[21] && event[21].length) {
|
||||
descriptionCell.innerHTML = description;
|
||||
descriptionCellValue.innerHTML = event[21];
|
||||
descriptionCellValue.innerHTML = event[21].replace(/(?:\r\n|\r|\n)/g, '<br/>');
|
||||
}
|
||||
|
||||
if (printColors.checked) {
|
||||
|
||||
Reference in New Issue
Block a user