From 257fd2fffcf11df1b234cb5c1f8f0916d7826b55 Mon Sep 17 00:00:00 2001 From: masum-ulu Date: Wed, 23 Oct 2024 13:56:53 +0300 Subject: [PATCH] enhance explanation --- docs/en/framework/ui/angular/list-service.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/framework/ui/angular/list-service.md b/docs/en/framework/ui/angular/list-service.md index f86347cbab..e7aeb7e36e 100644 --- a/docs/en/framework/ui/angular/list-service.md +++ b/docs/en/framework/ui/angular/list-service.md @@ -140,7 +140,7 @@ You may use observables in combination with [AsyncPipe](https://angular.io/guide ``` ## Handle request status -`ListService` expose a `getter` as `requestStatus$`. With this getter you can track request status. You can manage your flow with `idle`, `loading`, `success` or `error` options. +To handle the request status `ListService` provides a `requestStatus$` observable. This observable emits the current status of a request, which can be one of the following values: `idle`, `loading`, `success` or `error`. These statuses allow you to easily manage the UI flow based on the request's state. ![RequestStatus](./images/list-service-request-status.gif)