From 6805449dd80fdf5b45ce4c35f3dd22d7ba909930 Mon Sep 17 00:00:00 2001 From: Bak Tazhibaev Date: Sun, 13 Apr 2025 23:34:32 -0500 Subject: [PATCH 1/2] Fixed 00-basic-app --- projects/00-basic-app/src/main.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/00-basic-app/src/main.ts b/projects/00-basic-app/src/main.ts index 602c5d5..f6bfe98 100644 --- a/projects/00-basic-app/src/main.ts +++ b/projects/00-basic-app/src/main.ts @@ -1,3 +1,5 @@ import { bootstrapApplication } from '@angular/platform-browser'; import { appConfig } from './app/app.config'; import { AppComponent } from './app/app.component'; + +bootstrapApplication(AppComponent, appConfig); \ No newline at end of file From abbf1ce7f284a1be1ff7cc83e7a6e1f5a616221d Mon Sep 17 00:00:00 2001 From: Bak Tazhibaev Date: Sun, 13 Apr 2025 23:42:46 -0500 Subject: [PATCH 2/2] Fixed 01-hello-ng --- projects/01-hello-angular/src/app/app.component.ts | 5 +++++ projects/01-hello-angular/src/styles.css | 1 + 2 files changed, 6 insertions(+) diff --git a/projects/01-hello-angular/src/app/app.component.ts b/projects/01-hello-angular/src/app/app.component.ts index ec6bfc7..daf6600 100644 --- a/projects/01-hello-angular/src/app/app.component.ts +++ b/projects/01-hello-angular/src/app/app.component.ts @@ -9,6 +9,11 @@ import { RouterOutlet } from '@angular/router'; template: `

If you are reading this...

Things have worked out well! 🎉

+
    +
  1. GOT
  2. +
  3. GOT
  4. +
  5. GOT
  6. +
`, styles: ``, }) diff --git a/projects/01-hello-angular/src/styles.css b/projects/01-hello-angular/src/styles.css index 3d936f6..07b7e02 100644 --- a/projects/01-hello-angular/src/styles.css +++ b/projects/01-hello-angular/src/styles.css @@ -3,4 +3,5 @@ font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + list-style-type: upper-roman; }