From b4a12c22a49d03cbb589d980f95bfb33f211c5d3 Mon Sep 17 00:00:00 2001 From: Abhyudita Singh <60813273+singhabhyudita@users.noreply.github.com> Date: Wed, 28 Jun 2023 10:05:06 -0700 Subject: [PATCH] [#12268] Make instructor getting started page more prominent (#12496) * fixed overlapping button issue * Overflow fixed * Updating failing checks * Reduced padding at ends and for the info button * Corresponding snapshots updated * Padding changed to horizontal axis * snapshots updated * custom styling added * Instructor getting started made prominent * Snapshots updated * minor update * Trailing commas added --- .../app/pages-instructor/instructor-page.component.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/web/app/pages-instructor/instructor-page.component.ts b/src/web/app/pages-instructor/instructor-page.component.ts index 829c484d920..373d370d8dc 100644 --- a/src/web/app/pages-instructor/instructor-page.component.ts +++ b/src/web/app/pages-instructor/instructor-page.component.ts @@ -44,8 +44,17 @@ export class InstructorPageComponent implements OnInit { display: 'Notifications', }, { - url: '/web/instructor/help', display: 'Help', + children: [ + { + url: '/web/instructor/getting-started', + display: 'Getting Started', + }, + { + url: '/web/instructor/help', + display: 'Instructor Help', + }, + ], }, ]; isFetchingAuthDetails: boolean = false;