Skip to content

Commit

Permalink
Merge branch 'master-pre-prod'
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicola Lanzilotto committed Apr 9, 2024
2 parents 4b010d8 + 0371e37 commit f2537ef
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,10 @@ export class ChatbotAlertComponent extends PricingBaseComponent implements OnIni
takeUntil(this.unsubscribe$)
)
.subscribe((project) => {
this.project = project;
this.projectId = project._id
if (project) {
this.project = project;
this.projectId = project._id
}

})
}
Expand Down

0 comments on commit f2537ef

Please sign in to comment.