Skip to content

Commit

Permalink
Merge pull request #4542 from sbwalker/dev
Browse files Browse the repository at this point in the history
fix #4536 - deleted modules appearing in Page Management - Modules panel
  • Loading branch information
sbwalker authored Aug 20, 2024
2 parents 81ce920 + c3ddb8d commit f936d4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Oqtane.Client/Modules/Admin/Pages/Edit.razor
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@

// page modules
var modules = await ModuleService.GetModulesAsync(PageState.Site.SiteId);
_pageModules = modules.Where(item => item.PageId == _page.PageId).ToList();
_pageModules = modules.Where(item => item.PageId == _page.PageId && !item.IsDeleted).ToList();

// audit
_createdby = _page.CreatedBy;
Expand Down

0 comments on commit f936d4c

Please # to comment.