diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/dashboards/examine-management/views/section-view-examine-indexers.ts b/src/Umbraco.Web.UI.Client/src/backoffice/dashboards/examine-management/views/section-view-examine-indexers.ts
index 0b9d346272..86a849176f 100644
--- a/src/Umbraco.Web.UI.Client/src/backoffice/dashboards/examine-management/views/section-view-examine-indexers.ts
+++ b/src/Umbraco.Web.UI.Client/src/backoffice/dashboards/examine-management/views/section-view-examine-indexers.ts
@@ -180,6 +180,7 @@ export class UmbDashboardExamineIndexElement extends UmbContextConsumerMixin(Lit
Lists the properties of the ${this._indexData.name}
${Object.entries(this._indexData).map((entry) => {
+ //TODO: This should be providerProperties showing up here
return html`
${entry[0]}
${JSON.stringify(entry[1]).replace(/,/g, ', ')}
diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/dashboards/examine-management/views/section-view-examine-searchers.ts b/src/Umbraco.Web.UI.Client/src/backoffice/dashboards/examine-management/views/section-view-examine-searchers.ts
index 8cf7a8480f..4f25944fee 100644
--- a/src/Umbraco.Web.UI.Client/src/backoffice/dashboards/examine-management/views/section-view-examine-searchers.ts
+++ b/src/Umbraco.Web.UI.Client/src/backoffice/dashboards/examine-management/views/section-view-examine-searchers.ts
@@ -270,6 +270,7 @@ export class UmbDashboardExamineSearcherElement extends UmbContextConsumerMixin(
${field.name}
{
this._exposedFields = this._exposedFields?.map((f) => {