From 6d84622174053aadb8a29ec464e555bf87290fcd Mon Sep 17 00:00:00 2001 From: Oleh <65224395+OlehDulebaEpam@users.noreply.github.com> Date: Tue, 21 Nov 2023 20:31:29 +0200 Subject: [PATCH] corrected description for angular/ngrx practical task (#1356) --- tasks/angular/NgRX.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tasks/angular/NgRX.md b/tasks/angular/NgRX.md index a938afa50..b63ab9044 100644 --- a/tasks/angular/NgRX.md +++ b/tasks/angular/NgRX.md @@ -100,7 +100,8 @@ Here you can find an example of admin page: [Admin page reference](./admin.jpg): - list of videos from API YouTube. 2. NgRx storage must only be changed in the following cases: - new response from the YouTube API is received; - - new card is added using _Admin Page_. + - new card is added using _Admin Page_; + - card is deleted; 3. _Custom Cards_ must contain the following information: - title - description @@ -108,7 +109,7 @@ Here you can find an example of admin page: [Admin page reference](./admin.jpg): - link to video - creation date (current date) 4. Information about _Custom Cards_ must be saved until your application is reloaded even if you perform requests to - YouTube API. In other words, all custom cards are one-off session data and suppose to be saved in localStorage. + YouTube API. In other words, all custom cards are one-off session data and suppose not to be saved in localStorage. #### Expected behavior