Fix rendering company description.

This commit is contained in:
2019-05-18 17:25:23 +01:00
parent fb9a86f7e4
commit f5db8bbbff
3 changed files with 5 additions and 4 deletions

View File

@@ -68,6 +68,8 @@ namespace cicm_web.Controllers
if(company == null) return Index();
ViewBag.CompanyDescription = company.Description?.Text;
return View(company);
}