Skip to content

Commit

Permalink
fix: function adjustments #734
Browse files Browse the repository at this point in the history
  • Loading branch information
MadalenaCampos committed Jul 12, 2023
1 parent ae8b75c commit c9a60a3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion projects/ion/src/lib/chip-group/chip-group.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ export class IonChipGroupComponent {
@Output() dropdown? = new EventEmitter<DropdownItem[]>();

selectChip(chipSelected: ChipInGroup): void {
if (chipSelected.multiple && chipSelected.selected) {
const isChipSelectedOrMultiple =
chipSelected.multiple && chipSelected.selected;
if (isChipSelectedOrMultiple) {
return;
}

Expand Down

0 comments on commit c9a60a3

Please sign in to comment.