diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/collection/collection.element.ts b/src/Umbraco.Web.UI.Client/src/packages/core/collection/collection.element.ts index f42bef05a3..cd059ee941 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/collection/collection.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/collection/collection.element.ts @@ -61,6 +61,7 @@ export class UmbCollectionElement extends UmbLitElement { ${this.renderToolbar()} + ${this.renderPagination()} ${this.renderSelectionActions()} `; @@ -70,6 +71,10 @@ export class UmbCollectionElement extends UmbLitElement { return html``; } + protected renderPagination () { + return html``; + } + protected renderSelectionActions() { return html``; }