diff --git a/ui-ngx/src/app/modules/home/models/entity/entities-table-config.models.ts b/ui-ngx/src/app/modules/home/models/entity/entities-table-config.models.ts index e1a7700d67..9dd434101d 100644 --- a/ui-ngx/src/app/modules/home/models/entity/entities-table-config.models.ts +++ b/ui-ngx/src/app/modules/home/models/entity/entities-table-config.models.ts @@ -120,8 +120,9 @@ export class EntityLinkTableColumn> extends BaseEntity public title: string, public width: string = '0px', public cellContentFunction: CellContentFunction = (entity, property) => entity[property] ? entity[property] : '', - public entityURL: (entity) => string) { - super('link', key, title, width, false); + public entityURL: (entity) => string, + public sortable: boolean = true) { + super('link', key, title, width, sortable); } }