Skip to content

Commit

Permalink
Merge pull request #528 from rahulramakrishnan3/release-3.0.0
Browse files Browse the repository at this point in the history
bug fix for 1395
  • Loading branch information
Cafnanc authored Jul 22, 2024
2 parents ca361c6 + a8a05d9 commit f9d9d1b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/pages/tabs/home/home.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,10 @@ export class HomePage implements OnInit {
}

selectChip(chip: any) {
this.criteriaChip = chip;
if (this.criteriaChip === chip) {
this.criteriaChip = null;
} else {
this.criteriaChip = chip;
}
}
}

0 comments on commit f9d9d1b

Please sign in to comment.