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();