Skip to content

Commit

Permalink
Reorder eligibility eligibility determination details to ensure relev…
Browse files Browse the repository at this point in the history
…ant reasons first
  • Loading branch information
mjumbewu committed Jul 18, 2023
1 parent 16ffbc5 commit 99d429d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/components/CypressGrantsListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ export default {
orderedEligibilityCriteria() {
return this.eligibility.criteria.slice().sort((a, b) => {
const eligibilityOrder = {
undefined: 0,
false: 1,
false: 0,
undefined: 1,
null: 2,
true: 3,
};
Expand Down

0 comments on commit 99d429d

Please sign in to comment.