Skip to content

Commit

Permalink
[ACS-8638] - [ACC] User is able to 'select' tag chip while creating n…
Browse files Browse the repository at this point in the history
…ew tags in ACC (#10134)
  • Loading branch information
dominikiwanekhyland authored Aug 29, 2024
1 parent 18d81f6 commit f6e72f8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</p>
<div class="adf-tags-list" [class.adf-tags-list-fixed]="!tagNameControlVisible" #tagsList>
<mat-chip-listbox *ngIf="tags.length > 0">
<mat-chip-option *ngFor="let tag of tags" [disableRipple]="true" [title]="tag" class="adf-tags-chip">
<mat-chip *ngFor="let tag of tags" [disableRipple]="true" [title]="tag" class="adf-tags-chip">
{{ tag }}
<button
data-automation-id="remove-tag-button"
Expand All @@ -28,7 +28,7 @@
matChipRemove>
<mat-icon>close</mat-icon>
</button>
</mat-chip-option>
</mat-chip>
</mat-chip-listbox>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ adf-tags-creator {
margin-top: 8px;
}

.adf-tags-chip {
height: auto;
}

.adf-existing-tags-panel {
border-top-left-radius: 6px;
border-top-right-radius: 6px;
Expand Down

0 comments on commit f6e72f8

Please sign in to comment.