Skip to content

Commit

Permalink
Adjust question format and fix misspelling
Browse files Browse the repository at this point in the history
  • Loading branch information
mkimberlin committed Nov 13, 2024
1 parent ce82a59 commit c7dd3a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web-ui/src/pages/MeritReportPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ const MeritReportPage = () => {

const questions = getUniqueQuestions(feedback.answers);
for(let question of Object.keys(questions)) {
text += markdown.headers.h3(question) + "\n";
text += markdown.headers.h4(question) + "\n";
for(let answer of questions[question]) {
if (listMembers) {
text += answer[0] + ": ";
Expand Down Expand Up @@ -357,7 +357,7 @@ const MeritReportPage = () => {

const questions = getUniqueQuestions(feedback.answers);
for(let question of Object.keys(questions)) {
text += markdown.headers.h3(question) + "\n";
text += markdown.headers.h4(question) + "\n";
for(let answer of questions[question]) {
text += answer[0] + ": " + answer[1] + "\n\n";
}
Expand Down Expand Up @@ -485,7 +485,7 @@ const MeritReportPage = () => {
<div className="merit-report-page">
<Button color="primary" className="space-between">
<label htmlFor="file-upload-comp">
<h3>Compenstion History File {selectedCompHist && checkMark}</h3>
<h3>Compensation History File {selectedCompHist && checkMark}</h3>
<input
accept=".csv"
id="file-upload-comp"
Expand Down

0 comments on commit c7dd3a0

Please sign in to comment.