Skip to content

Commit

Permalink
Update AppPage.vue (#192)
Browse files Browse the repository at this point in the history
* Update AppPage.vue

fixing character count on submission for applicant clarity

* Update AppPage.vue

Re: Actually fixing the prior error

* Update AppPage.vue

Updating the other one too
  • Loading branch information
aflion49 authored Nov 2, 2024
1 parent 0f53225 commit d02740c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/jurorApps/pages/AppPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ export default {
this.$set(this.essayText, questionID, 'You are over the character limit');
return;
} else if (md.length < 500) {
this.$set(this.essayText, questionID, `Please write ${500 - md.length} characters to submit your answer`);
this.$set(this.essayText, questionID, `Please write ${500 - md.length}/5000 characters to submit your answer`);
return;
}
this.$set(this.saving, questionID, true);
Expand Down Expand Up @@ -441,7 +441,7 @@ export default {
}
} else {
this.answers[question.id] = '';
this.$set(this.essayText, question.id, `Please write ${500 - this.answers[question.id].length} characters to submit your answer`);
this.$set(this.essayText, question.id, `Please write ${500 - this.answers[question.id].length}/5000 characters to submit your answer`);
}
}
this.$set(this.saving, question.id, false);
Expand Down Expand Up @@ -481,4 +481,4 @@ export default {
user-select: none;
cursor: grab;
}
</style>
</style>

0 comments on commit d02740c

Please sign in to comment.