diff --git a/labs/Teacher/TeacherExt/Controllers/HomeController.cs b/labs/Teacher/TeacherExt/Controllers/HomeController.cs index a80444e5..de59203f 100644 --- a/labs/Teacher/TeacherExt/Controllers/HomeController.cs +++ b/labs/Teacher/TeacherExt/Controllers/HomeController.cs @@ -691,7 +691,7 @@ namespace TeacherExt.Controllers row.Export("BC", headers, () => teacher.TeacherCardLangLevel)?.SetCell(++colIndex, style, teacher.TeacherCardLangLevel); row.Export("BD", headers, () => teacher.CurrentAddressArea)?.SetCell(++colIndex, style, teacher.CurrentAddressArea); row.Export("BE", headers, () => teacher.AddressDetails)?.SetCell(++colIndex, style, teacher.AddressDetails); - row.Export("BF", headers, () => teacher.Comment)?.SetCell(++colIndex, style, ""); + row.Export("BF", headers, () => teacher.Comment)?.SetCell(++colIndex, style, teacher.Comment); } NPOIHelper.SetColWidth(3, sheet); }