Timeline Content on Post Incident Review Report Displays Work Notes with No Line BreakDescriptionRegarding the Timeline of Investigation timeline and Response tasks, Work notes display with no line break in Post Incident Review Report.Steps to Reproduce 1) Open a security incident add a work notes in different lines2) Move the security incident to review state3) Click on configure preview report4) Verify that work note content gets displayed under timeline with the line breaks and spaces as posted in worknotesActual Result: Worknote content displayed without line break under PIR reportExpected Result: Worknote content displayed on report without line breaks.WorkaroundPlease do some code changes in the following script : Open the following script includeGo to method _addSpaces (line number 1136) in the scriptReplace the method with following code -- Before -- _addSpaces: function(string, maxlength) { if (maxlength == undefined) maxlength = 15; var self = this; //using \s to handle newline and space characters. var modifiedString = string.split(/\s/).map(function(word) { if (word.length <= maxlength) return word; else { var numSpacesNeeded = parseInt(word.length / maxlength); return self._addSpacesRecursively(word, maxlength, numSpacesNeeded, 0); } }).join(' '); return modifiedString; },-- After -- _addSpaces: function(string, maxlength) { if (maxlength == undefined) maxlength = 15; var self = this; //handle new line and space separately var modifiedString = string.split(/\n/).map(function(line) { return line.split(/ /).map(function(word) { if (word.length <= maxlength) return word; else { var numSpacesNeeded = parseInt(word.length / maxlength); return self._addSpacesRecursively(word, maxlength, numSpacesNeeded, 0); } }).join(' '); }).join('\n'); return modifiedString; }, Related Problem: PRB1486199