Skip to content

Commit

Permalink
fix: bar
Browse files Browse the repository at this point in the history
  • Loading branch information
jordan-ae committed Jan 10, 2025
1 parent e4e77c1 commit 645e322
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/store/bountyCard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,11 +247,11 @@ export class BountyCardStore {
get filteredBountyCards() {
return this.bountyCards.filter((card: BountyCard) => {
const searchMatch =
!this.searchText ||
[card.title, card.features?.name, card.phase?.name].some(
(field: string | undefined) =>
field?.toLowerCase().includes(this.searchText.toLowerCase().trim())
);
!this.searchText ||
[card.title, card.features?.name, card.phase?.name].some(
(field: string | undefined) =>
field?.toLowerCase().includes(this.searchText.toLowerCase().trim())
);

const featureMatch =
this.selectedFeatures.length === 0 ||
Expand Down

0 comments on commit 645e322

Please sign in to comment.