Skip to content

Commit

Permalink
do not include "Globally" in filtered results
Browse files Browse the repository at this point in the history
  • Loading branch information
graphographer committed Jan 23, 2024
1 parent 955610e commit 9f4b0d0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/models/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,12 @@ export class State {
});
}

return new Set(filteredEntries.map(entry => entry.Country).flat());
return new Set(
filteredEntries
.map(entry => entry.Country)
.flat()
.filter(country => country !== 'Globally')
);
}

get projectsByCountry() {
Expand Down

0 comments on commit 9f4b0d0

Please sign in to comment.