Skip to content
This repository has been archived by the owner on Sep 4, 2023. It is now read-only.

Commit

Permalink
Fix: Bugfix columns (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
NealGeilen authored and Typiqally committed May 26, 2023
1 parent 2ca4a1d commit acca589
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions Epsilon/Export/Exporters/ExcelModuleExporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,6 @@ public async Task<Stream> Export(ExportData data, string format)
foreach (var module in data.CourseModules)
{
var worksheetPart = CreateWorksheet(module, workbookPart);
worksheetPart.Worksheet.Append(
new Columns(
new Column { Min = 1, Max = 1, Width = 30, CustomWidth = true },
new Column { Min = 2, Max = 2, Width = 60, CustomWidth = true },
new Column { Min = 3, Max = 3, Width = 10, CustomWidth = true }
)
);

InsertCellsInWorksheet(
worksheetPart,
Expand Down

0 comments on commit acca589

Please sign in to comment.