Fix for Recycle bin not showing Deleted Date (Issue #2234)

Added the Deleted data to Module from the PageModule
This commit is contained in:
Leigh Pointer 2022-06-14 09:22:12 +02:00
parent 6e7e90acf4
commit c8cfb3c7b7

View File

@ -63,6 +63,8 @@ namespace Oqtane.Controllers
module.CreatedOn = pagemodule.Module.CreatedOn;
module.ModifiedBy = pagemodule.Module.ModifiedBy;
module.ModifiedOn = pagemodule.Module.ModifiedOn;
module.DeletedBy = pagemodule.DeletedBy;
module.DeletedOn = pagemodule.DeletedOn;
module.IsDeleted = pagemodule.IsDeleted;
module.PageModuleId = pagemodule.PageModuleId;