Skip to content

Commit

Permalink
Revert "temp: remove forcing default value for grading strategy"
Browse files Browse the repository at this point in the history
This reverts commit 2a71705.
  • Loading branch information
mariajgrimaldi committed Apr 18, 2024
1 parent 7013acc commit aa96648
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,10 @@ export class EditPeerAssessmentView {
if (strategy !== undefined) {
self.val(strategy);
}
if (self.val() === undefined || self.val() === '') {
self.val('median');
return 'median';
}
return self.val();
}

Expand Down

0 comments on commit aa96648

Please sign in to comment.