added custom button to menu

This commit is contained in:
Fran Jurmanović
2021-06-04 17:02:20 +02:00
parent 54607aba58
commit d8b3a6a196
8 changed files with 118 additions and 14 deletions

View File

@@ -99,9 +99,9 @@ class AppPaginationElement extends BaseComponentElement {
? this.customRenderItems
: () => {
if (items?.length > 0) {
return html`<span>
return html`<div class="table">
${items?.map((item) => renderItem(item))}
</span>`;
</div>`;
}
return html``;
};