[Library | develop]: project.component.ts: [Bug fix] In method "getProjectInfo()", added this.projectInfo.id = this.projectId; - direct link action button was not working, id was missing.
This commit is contained in:
parent
be187c3fed
commit
46a8928a20
|
@ -464,6 +464,7 @@ export class ProjectComponent {
|
||||||
this.subscriptions.push(this._projectService.getProjectInfo(id, this.properties).subscribe(
|
this.subscriptions.push(this._projectService.getProjectInfo(id, this.properties).subscribe(
|
||||||
data => {
|
data => {
|
||||||
this.projectInfo = data;
|
this.projectInfo = data;
|
||||||
|
this.projectInfo.id = this.projectId;
|
||||||
|
|
||||||
this.actionsAfterGettingProjectInfo();
|
this.actionsAfterGettingProjectInfo();
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue