From 786d20a6cbea4888c71e8123ecc574c5c2cc3487 Mon Sep 17 00:00:00 2001 From: Maksym Tsymbarov Date: Fri, 14 Nov 2025 19:06:24 +0200 Subject: [PATCH] fixed max length of name field --- .../home/components/vc/entity-versions-table.component.html | 4 ++-- .../home/components/vc/entity-versions-table.component.scss | 5 +---- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/ui-ngx/src/app/modules/home/components/vc/entity-versions-table.component.html b/ui-ngx/src/app/modules/home/components/vc/entity-versions-table.component.html index 9d87b724a2..ca9f9a4f90 100644 --- a/ui-ngx/src/app/modules/home/components/vc/entity-versions-table.component.html +++ b/ui-ngx/src/app/modules/home/components/vc/entity-versions-table.component.html @@ -114,8 +114,8 @@ {{ 'version-control.version-name' | translate }} -
- {{ entityVersion.name }} +
+ {{ entityVersion.name?.length > 256 ? entityVersion.name.substring(0, 256) + '…' : entityVersion.name }}
diff --git a/ui-ngx/src/app/modules/home/components/vc/entity-versions-table.component.scss b/ui-ngx/src/app/modules/home/components/vc/entity-versions-table.component.scss index 1f8dc7921f..752d250145 100644 --- a/ui-ngx/src/app/modules/home/components/vc/entity-versions-table.component.scss +++ b/ui-ngx/src/app/modules/home/components/vc/entity-versions-table.component.scss @@ -55,10 +55,7 @@ } .table-container { - overflow: hidden; - .mat-mdc-table { - table-layout: fixed; - } + overflow: auto; } .tb-entity-table-info{