Skip to content

Commit

Permalink
[ACS-8275] [ACA] Angular 15 tags are not displayed correctly (#9896)
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikiwanekhyland authored and VitoAlbano committed Jul 3, 2024
1 parent 01c5270 commit 43f44de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 43f44de

Please sign in to comment.