Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ private List<ContentTypeDto> GetContentTypes(int? id = null)
foreach (var contentType in contentTypes)
{
var properties = new List<ContentTypePropertyDto>();
foreach (var propertyGroup in contentType.PropertyGroups)
foreach (var propertyGroup in contentType.CompositionPropertyGroups)
{
if (propertyGroup.PropertyTypes is null)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ export class AlgoliaDashboardOverviewElement extends UmbElementMixin(LitElement)
<uui-table-cell>${index.name}</uui-table-cell>
<uui-table-cell>
${index.contentData.map((contentData) => {
if (!contentData.properties) return;
return html`
<uui-ref-node name=${contentData.name}
detail=${contentData.properties.map(obj => obj.name).join(', ')}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PackageIconUrl></PackageIconUrl>
<PackageProjectUrl>https://github.com/umbraco/Umbraco.Cms.Integrations/tree/main/src/Umbraco.Cms.Integrations.Search.Algolia</PackageProjectUrl>
<RepositoryUrl>https://github.com/umbraco/Umbraco.Cms.Integrations</RepositoryUrl>
<Version>5.0.0</Version>
<Version>5.0.1</Version>
<Authors>Umbraco HQ</Authors>
<Company>Umbraco</Company>
<PackageTags>Umbraco;Umbraco-Marketplace</PackageTags>
Expand Down
Loading