File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -203,7 +203,6 @@ const makeProgramming = (
203203 testcases : publicTestcases . map ( testcase => makeTestcase ( testcase ) ) ,
204204 testcasesPrivate : privateTestcases . map ( testcase => makeTestcase ( testcase ) ) ,
205205 answer : solution ? ( solution [ 0 ] as string ) . trim ( ) : '' ,
206- lastModifiedAt : new Date ( ) . toISOString ( ) ,
207206 type : 'programming'
208207 } ;
209208 if ( problem . SNIPPET [ 0 ] . GRADER ) {
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ export type AssessmentConfiguration = {
100100
101101export interface IProgrammingQuestion extends BaseQuestion {
102102 answer : string | null ;
103- lastModifiedAt : string ;
103+ lastModifiedAt ? : string ;
104104 autogradingResults : AutogradingResult [ ] ;
105105 graderTemplate ?: string ;
106106 prepend : string ;
You can’t perform that action at this time.
0 commit comments