diff --git a/ui-ngx/src/app/modules/home/components/entity/entities-table.component.html b/ui-ngx/src/app/modules/home/components/entity/entities-table.component.html index 83f221f9e1..539371301e 100644 --- a/ui-ngx/src/app/modules/home/components/entity/entities-table.component.html +++ b/ui-ngx/src/app/modules/home/components/entity/entities-table.component.html @@ -165,7 +165,7 @@ matTooltipPosition="above" [ngStyle]="cellStyle(entity, column, row)"> - + > extends BaseEntityTabl public headerCellStyleFunction: HeaderCellStyleFunction = () => ({}), public cellTooltipFunction: CellTooltipFunction = () => undefined, public isNumberColumn: boolean = false, - public actionCell: CellActionDescriptor = {isEnabled: () => false, name: null, onAction: () => ({})}) { + public actionCell: CellActionDescriptor = null) { super('content', key, title, width, sortable); } } @@ -192,7 +192,3 @@ export class EntityTableConfig, P extends PageLink = P export function checkBoxCell(value: boolean): string { return `${value ? 'check_box' : 'check_box_outline_blank'}`; } - -export function copyCellContent(value: string): string { - return `${value ? 'check_box' : 'check_box_outline_blank'}`; -}