From e6fb9cf6ba90c2f4a037cc1d0b1557876e588005 Mon Sep 17 00:00:00 2001 From: Sinan997 Date: Thu, 2 May 2024 13:43:36 +0300 Subject: [PATCH] update `ConfigStateService` documentation --- docs/en/UI/Angular/Config-State-Service.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/UI/Angular/Config-State-Service.md b/docs/en/UI/Angular/Config-State-Service.md index c457184fc2..668b6f8568 100644 --- a/docs/en/UI/Angular/Config-State-Service.md +++ b/docs/en/UI/Angular/Config-State-Service.md @@ -123,7 +123,7 @@ You can get the application configuration response and set the `ConfigStateServi import {AbpApplicationConfigurationService, ConfigStateService} from '@abp/ng.core'; constructor(private abpApplicationConfigurationService: AbpApplicationConfigurationService, private config: ConfigStateService) { - this.abpApplicationConfigurationService.get().subscribe(config => { + this.abpApplicationConfigurationService.get({ includeLocalizationResources: false }).subscribe(config => { this.config.setState(config); }) }