mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
fixing multiline feedback
This commit is contained in:
@@ -70,12 +70,15 @@ export const quizFeedbackMarkdownUtils = {
|
||||
.replace(feedbackIndicators[currentFeedbackType], "")
|
||||
.trim();
|
||||
comments[currentFeedbackType].push(lineWithoutIndicator);
|
||||
|
||||
} else if (lineFeedbackType !== "none") {
|
||||
|
||||
const lineWithoutIndicator = line
|
||||
.replace(feedbackIndicators[lineFeedbackType], "")
|
||||
.trim();
|
||||
currentFeedbackType = lineFeedbackType;
|
||||
comments[lineFeedbackType].push(lineWithoutIndicator);
|
||||
|
||||
} else {
|
||||
otherLines.push(line);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user