[ACS-8275] [ACA] Angular 15 tags are not displayed correctly (#9896)

This commit is contained in:
dominikiwanekhyland 2024-07-02 12:54:17 +02:00 committed by VitoAlbano
parent 01c527024a
commit 43f44de998
2 changed files with 5 additions and 1 deletions

View File

@ -101,7 +101,7 @@
</mat-expansion-panel-header>
<div *ngIf="currentPanel.panelTitle === DefaultPanels.TAGS && !editing" class="adf-metadata-properties-tags">
<mat-chip-set>
<mat-chip *ngFor="let tag of tags" [disableRipple]="true" data-automation-id="metadata-properties-tag-chip">{{ tag }}</mat-chip>
<mat-chip *ngFor="let tag of tags" [disableRipple]="true" class="metadata-properties-tag-chip" data-automation-id="metadata-properties-tag-chip">{{ tag }}</mat-chip>
</mat-chip-set>
</div>
<div *ngIf="showEmptyTagMessage" class="adf-metadata-no-item-added">

View File

@ -67,6 +67,10 @@ $panel-properties-height: 56px !default;
#{$mat-chip} {
background: var(--adf-metadata-buttons-background-color);
padding: 6px;
&.metadata-properties-tag-chip {
overflow: hidden;
}
}
.adf-metadata-no-item-added {