File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
source/views/sis/student-work Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ export function cleanJob(job: JobType): JobType {
1212 const type = fastGetTrimmedText ( job . type )
1313
1414 // these all need to retain their newlines
15- const description = removeHtmlWithRegex ( job . description ) . replace ( '\t' , ' ' )
16- const comments = removeHtmlWithRegex ( job . comments ) . replace ( '\t' , ' ' )
17- const skills = removeHtmlWithRegex ( job . skills ) . replace ( '\t' , ' ' )
15+ const description = removeHtmlWithRegex ( job . description ) . replace ( / \t / g , ' ' )
16+ const comments = removeHtmlWithRegex ( job . comments ) . replace ( / \t / g , ' ' )
17+ const skills = removeHtmlWithRegex ( job . skills ) . replace ( / \t / g , ' ' )
1818
1919 const hoursPerWeek = job . hoursPerWeek . trim ( )
2020 const lastModified = job . lastModified . trim ( )
You can’t perform that action at this time.
0 commit comments