DEV Community

Discussion on: Build an Angular 8 App with REST API and ASP.NET Core 2.2 - part 2

Collapse
 
mill1 profile image
Emiel

Another small bug in app-routing.module.ts:
{ path: 'addedit', component: BlogPostAddEditComponent },
should be:
{ path: 'add', component: BlogPostAddEditComponent },

Still the best Angular 8 CRUD tutorial could find online :)

Collapse
 
dileno profile image
Martin Soderlund Ek • Edited

Thanks for pointing this out - now updated the code section for app-routing.module.ts :)

Thank you!