diff --git a/src/web/app/components/question-types/question-edit-answer-form/rubric-question-edit-answer-form.component.html b/src/web/app/components/question-types/question-edit-answer-form/rubric-question-edit-answer-form.component.html index 026c5af4bb0..7be314be80c 100644 --- a/src/web/app/components/question-types/question-edit-answer-form/rubric-question-edit-answer-form.component.html +++ b/src/web/app/components/question-types/question-edit-answer-form/rubric-question-edit-answer-form.component.html @@ -61,10 +61,3 @@ (click)="resetHandler()"> Reset choices - - diff --git a/src/web/app/components/question-types/question-edit-answer-form/rubric-question-edit-answer-form.component.ts b/src/web/app/components/question-types/question-edit-answer-form/rubric-question-edit-answer-form.component.ts index b372376a622..5fc5a2ece07 100644 --- a/src/web/app/components/question-types/question-edit-answer-form/rubric-question-edit-answer-form.component.ts +++ b/src/web/app/components/question-types/question-edit-answer-form/rubric-question-edit-answer-form.component.ts @@ -87,17 +87,9 @@ export class RubricQuestionEditAnswerFormComponent extends QuestionEditAnswerFor 'Are you sure you want to reset your choices? This action cannot be reverted' ).result.then(() => { this.resetRubricAnswer(); - // this.resetWarningTriggered.emit(); }, () => {}); } - // confirmReset(confirm: boolean): void { - // if (confirm) { - // this.resetRubricAnswer(); - // } - // this.showResetWarning = false; - // } - resetRubricAnswer(): void { const resettedAnswer: number[] = Array(this.questionDetails.rubricSubQuestions.length).fill(RUBRIC_ANSWER_NOT_CHOSEN);