Browse Source

Update Config-State-Service.md

Shouldn't `ApplicationConfigurationService `be `abpApplicationConfigurationService`
pull/12786/head
vnetonline 4 years ago
committed by GitHub
parent
commit
7f2d6beea9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      docs/en/UI/Angular/Config-State-Service.md

4
docs/en/UI/Angular/Config-State-Service.md

@ -122,8 +122,8 @@ You can get the application configuration response and set the `ConfigStateServi
```js
import {ApplicationConfigurationService, ConfigStateService} from '@abp/ng.core';
constructor(private applicationConfigurationService: ApplicationConfigurationService, private config: ConfigStateService) {
this.applicationConfigurationService.getConfiguration().subscribe(config => {
constructor(private abpApplicationConfigurationService: AbpApplicationConfigurationService, private config: ConfigStateService) {
this.abpApplicationConfigurationService.get.subscribe(config => {
this.config.setState(config);
})
}

Loading…
Cancel
Save