Skip to content
Snippets Groups Projects
Commit 16cc2c3b authored by Florent Poittevin's avatar Florent Poittevin
Browse files

fix: mobile main menu navigation click close menu in same time

parent b813bfab
No related branches found
No related tags found
No related merge requests found
......@@ -34,4 +34,22 @@ export class MainToolbarMobilePresentational extends AbstractMainToolbarPresenta
constructor(private oauth: OAuth2Service) {
super(oauth);
}
// @Override()
navigate(path: string): void {
super.navigate(path);
this.toggleMenu();
}
// @Override()
logout(): void {
super.logout();
this.toggleMenu();
}
// @Override()
login(): void {
super.login();
this.toggleMenu();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment