File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/app/submission/objects Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ export class SubmissionObjectEffects {
205205 action . payload . submissionId ,
206206 'sections' ) as Observable < SubmissionObject [ ] > ;
207207 } else {
208- response$ = this . submissionObjectService . findById ( action . payload . submissionId ) . pipe (
208+ response$ = this . submissionObjectService . findById ( action . payload . submissionId , false , true ) . pipe (
209209 getFirstSucceededRemoteDataPayload ( ) ,
210210 map ( ( submissionObject : SubmissionObject ) => [ submissionObject ] )
211211 ) ;
@@ -356,6 +356,8 @@ export class SubmissionObjectEffects {
356356 * The submission object retrieved from REST
357357 * @param submissionId
358358 * The submission id
359+ * @param forms
360+ * The forms state
359361 * @param notify
360362 * A boolean that indicate if show notification or not
361363 * @return SubmissionObjectAction[]
@@ -365,7 +367,7 @@ export class SubmissionObjectEffects {
365367 currentState : SubmissionObjectEntry ,
366368 response : SubmissionObject [ ] ,
367369 submissionId : string ,
368- forms ,
370+ forms : FormState ,
369371 notify : boolean = true ) : SubmissionObjectAction [ ] {
370372
371373 const mappedActions = [ ] ;
You can’t perform that action at this time.
0 commit comments