Skip to content

Commit

Permalink
Switch PlannerTitle, planTitle first, then project title [skip-ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Remi749 committed Oct 31, 2023
1 parent de42ff9 commit 77626b2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export class PlannerConfiguration extends BaseTask {
): Promise<IPlannerPlan> {
try {
let plan: IPlannerPlan = {
title: [pageContext.web.title, this.planTitle].filter(Boolean).join(' - '),
title: [this.planTitle, pageContext.web.title].filter(Boolean).join(' - '),
owner: pageContext.legacyPageContext.groupId
}
this.logInformation(`Creating plan ${plan.title}`)
Expand Down

0 comments on commit 77626b2

Please sign in to comment.