Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ACS-8275] [ACA] Angular 15 tags are not displayed correctly (#9896)
Browse files Browse the repository at this point in the history
dominikiwanekhyland authored Jul 2, 2024
1 parent 9d155cd commit aba7af4
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -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">
Original file line number Diff line number Diff line change
@@ -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 {

0 comments on commit aba7af4

Please sign in to comment.