Skip to content

Commit c7dd3a0

Browse files
committed
Adjust question format and fix misspelling
1 parent ce82a59 commit c7dd3a0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: web-ui/src/pages/MeritReportPage.jsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ const MeritReportPage = () => {
288288

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

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

0 commit comments

Comments
 (0)