Skip to content

Commit

Permalink
Merge pull request #4432 from sbwalker/dev
Browse files Browse the repository at this point in the history
fix ISearchable implementation in default module template
  • Loading branch information
sbwalker authored Jul 18, 2024
2 parents eda48ab + b0e121a commit f0878fc
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ public Task<List<SearchContent>> GetSearchContentsAsync(PageModule pageModule, D
{
searchContentList.Add(new SearchContent
{
Title = pageModule.Module.Title,
EntityName = "[Owner][Module]",
EntityId = [Module].[Module]Id.ToString(),
Title = [Module].Name,
Body = [Module].Name,
ContentModifiedBy = [Module].ModifiedBy,
ContentModifiedOn = [Module].ModifiedOn
Expand Down

0 comments on commit f0878fc

Please sign in to comment.