Commit dc512719 by Chamath

S53481254 - Angular Conversion - Menu & Header

Loading menu when EnableClientMenu message is true.
parent c19d0dba
......@@ -93,6 +93,10 @@ export class AdminPortalLayoutComponent implements OnInit, OnDestroy {
this.createJobDisabled = message.message;
this.changeDetector.detectChanges();
}
} else if (message.name === 'EnableClientMenu') {
if (message.message === true) {
this.loadMenu();
}
}
}
));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment