diff --git a/docs/en/Community-Articles/2023-04-15-Converting-Create-Edit-Modal-To-Page/POST.md b/docs/en/Community-Articles/2023-04-15-Converting-Create-Edit-Modal-To-Page/POST.md index ccba01247f..a8f1aeadfa 100644 --- a/docs/en/Community-Articles/2023-04-15-Converting-Create-Edit-Modal-To-Page/POST.md +++ b/docs/en/Community-Articles/2023-04-15-Converting-Create-Edit-Modal-To-Page/POST.md @@ -1,6 +1,6 @@ # Convert Create/Edit Modals to Page -In this document we will explain how to convert BookStore's Books create & edit modals to regular angular component pages. +In this document we will explain how to convert the BookStore's Books create & edit modals to regular Angular component pages. ## Before @@ -12,13 +12,13 @@ In this document we will explain how to convert BookStore's Books create & edit # BooksComponent -This is the main component of the books management. Create & Update operations are done in this page. So we'll remove create & update operations from this page and move a separate angular component for each operation. Each component will be a page. +This is the main component of the books management. The create & update operations are done in this page. So we'll remove the create & update operations from this page and move a separate angular component for each operation. Each component will be a page. -- Remove Create & Update modal on template +- Remove the Create & Update modal on template ![remove-modal](images/books-remove-modals.png) -- Modify **NewBook** button with a link to **CreateBookComponent** page. +- Modify the **NewBook** button with a link to the **CreateBookComponent** page. ```html