|
@@ -138,7 +138,11 @@ export default class AccountMenuBuilder extends AbstractMenuBuilder {
|
|
|
)
|
|
)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- children.push(...this.makeChildren([{ pageName: 'subscription_page', endOfSubsection: true }]))
|
|
|
|
|
|
|
+ children.push(
|
|
|
|
|
+ ...this.makeChildren([
|
|
|
|
|
+ { pageName: 'subscription_page', endOfSubsection: true },
|
|
|
|
|
+ ]),
|
|
|
|
|
+ )
|
|
|
|
|
|
|
|
if (this.ability.can('display', 'my_bills_page')) {
|
|
if (this.ability.can('display', 'my_bills_page')) {
|
|
|
children.push(
|
|
children.push(
|
|
@@ -162,7 +166,11 @@ export default class AccountMenuBuilder extends AbstractMenuBuilder {
|
|
|
)
|
|
)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- children.push(...this.makeChildren([{ pageName: 'my_settings_page', endOfSubsection: true }]))
|
|
|
|
|
|
|
+ children.push(
|
|
|
|
|
+ ...this.makeChildren([
|
|
|
|
|
+ { pageName: 'my_settings_page', endOfSubsection: true },
|
|
|
|
|
+ ]),
|
|
|
|
|
+ )
|
|
|
|
|
|
|
|
actions.push(
|
|
actions.push(
|
|
|
this.createItem('logout', undefined, `/logout`, MENU_LINK_TYPE.V1),
|
|
this.createItem('logout', undefined, `/logout`, MENU_LINK_TYPE.V1),
|