CSS fix to display pagination

This commit is contained in:
leekelleher
2024-02-13 10:08:02 +00:00
parent 5e1f7aba21
commit ee8ec6f5cb

View File

@@ -47,7 +47,7 @@ export class UmbDocumentTableCollectionViewElement extends UmbLitElement {
private _tableItems: Array<UmbTableItem> = [];
@state()
private _selection: Array<string | null> = [];
private _selection: Array<string> = [];
private _collectionContext?: UmbDefaultCollectionContext<UmbDocumentTreeItemModel, UmbDocumentCollectionFilterModel>;
@@ -134,7 +134,7 @@ export class UmbDocumentTableCollectionViewElement extends UmbLitElement {
:host {
display: block;
box-sizing: border-box;
height: 100%;
height: auto;
width: 100%;
padding: var(--uui-size-space-3) 0;
}