Skip to content

Commit

Permalink
fix(display ganttchart): corrupted building v2
Browse files Browse the repository at this point in the history
  • Loading branch information
NguyenDonLam committed Oct 12, 2024
1 parent 515d7bd commit 637ea07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/GanttChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export default memo(function GanttChart() {
"-" +
course.replace(/[^a-zA-Z0-9]/g, "_") +
".csv",
csvData.replace(/\u00A0/g, "")// TODO: TEST THIS OUT
csvData.replace(/\u00A0/g, " ")
);
}
})
Expand Down

0 comments on commit 637ea07

Please sign in to comment.