From 2bb3b32a714a1b7b1b808fb9db913bcfda22ae8f Mon Sep 17 00:00:00 2001 From: Hamza Albreem <94292623+braim23@users.noreply.github.com> Date: Tue, 18 Apr 2023 14:40:33 +0000 Subject: [PATCH] Quick Fix For Angular convert-modals-to-page doc --- .../POST.md | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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