File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/app/modules/individual-contributor/container/individual-dashboard Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -64,11 +64,12 @@ export class IndividualDashboardComponent implements OnInit {
6464 }
6565
6666 postIndivdualRequestSignature ( ) {
67+ const redirectUrl = JSON . parse ( this . storageService . getItem ( AppSettings . REDIRECT ) ) ;
6768 const data = {
6869 project_id : this . projectId ,
6970 user_id : this . userId ,
7071 return_url_type : this . hasGerrit ? AppSettings . GERRIT :this . claContributorService . getTypeByUrl ( ) ,
71- return_url : this . hasGerrit ? '' : this . activeSignatureModel . return_url
72+ return_url : this . hasGerrit ? ( redirectUrl || '' ) : this . activeSignatureModel . return_url
7273 } ;
7374 this . claContributorService . postIndividualSignatureRequest ( data ) . subscribe (
7475 ( response ) => {
You can’t perform that action at this time.
0 commit comments