Skip to content

Commit

Permalink
[ACS-8001] rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita-web-ua committed Jul 30, 2024
1 parent 7c4107b commit 1046285
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,16 +78,16 @@
</ng-template>

<div *ngIf="property.multivalued" class="adf-property-field adf-dateitem-chip-list-container adf-dateitem-editable">
<mat-chip-list #chipList class="adf-textitem-chip-list">
<mat-chip
<mat-chip-listbox #chipList class="adf-textitem-chip-list">
<mat-chip-option
*ngFor="let propertyValue of property.displayValue; let idx = index"
[removable]="isEditable"
(removed)="removeValueFromList(idx)"
>
{{ propertyValue }}
<mat-icon *ngIf="isEditable" matChipRemove>cancel</mat-icon>
</mat-chip>
</mat-chip-list>
</mat-chip-option>
</mat-chip-listbox>

<div
*ngIf="isEditable"
Expand Down

0 comments on commit 1046285

Please sign in to comment.