From e57c2bbe76f47259e6d35ff476471b03f80f2226 Mon Sep 17 00:00:00 2001 From: Arjunlal B Date: Thu, 25 Nov 2021 14:58:04 +0530 Subject: [PATCH] fix: support for custom row size for table --- projects/components/src/table/table.component.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/projects/components/src/table/table.component.ts b/projects/components/src/table/table.component.ts index 1adfeab83..31b93ac76 100644 --- a/projects/components/src/table/table.component.ts +++ b/projects/components/src/table/table.component.ts @@ -153,6 +153,7 @@ import { TableColumnConfigExtended, TableService } from './table.service'; selectable: this.supportsRowSelection() }" class="data-row" + [style.height]="this.rowHeight" > @@ -280,6 +281,9 @@ export class TableComponent @Input() public loadingConfig?: LoadAsyncConfig; + @Input() + public rowHeight: string = '44px'; + @Output() public readonly rowClicked: EventEmitter = new EventEmitter();