Skip to content

Commit

Permalink
Modify the language for the non-enough-information case
Browse files Browse the repository at this point in the history
  • Loading branch information
mjumbewu committed Jul 18, 2023
1 parent 3a9a93b commit dcafcfe
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
@@ -1,7 +1,7 @@
<template>
<li :class="'grant ' + eligibilityClasses()">
<h3>{{ grant.name }}</h3>
<span v-if="isPrimaryApplicantSelected" class="overall-determination">{{ overallDeterminationLabel() }}</span>
<span v-if="isPrimaryApplicantSelected" class="overall-determination" v-html="overallDeterminationLabel()"></span>
<div v-if="isPrimaryApplicantSelected" class="toggle-detail-visibility">
<button class="toggle-reasons-button" @click="toggleDetailVisibility">
({{ isDetailVisible ? 'Hide' : 'Show' }} reasons)
Expand Down Expand Up @@ -88,7 +88,7 @@ export default {
this.eligibility.determination === true ? 'Eligible' :
this.eligibility.determination === false ? 'Ineligible' :
this.eligibility.determination === null ? 'Needs Review' :
'Not enough information...';
'May be eligible;<br>more info needed...';
},
eligibilityClasses() {
return !this.isPrimaryApplicantSelected ? '' :
Expand Down

0 comments on commit dcafcfe

Please sign in to comment.