@osovitny/anatoly 3.20.30 → 3.20.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -378,6 +378,15 @@ class AppContextService extends ApiServiceBase {
378
378
  this._standardJsonFilesLoaded = new BehaviorSubject(null);
379
379
  this.standardJsonFilesLoaded$ = this._standardJsonFilesLoaded.asObservable();
380
380
  this.baseUrl = `${ApiUrl}/app`;
381
+ this.internalInit();
382
+ }
383
+ internalInit() {
384
+ this.setDefaults();
385
+ this.setValues();
386
+ this.contextUpdated(this.current);
387
+ this.updated$.subscribe((context) => {
388
+ this.contextUpdated(context);
389
+ });
381
390
  }
382
391
  //fires
383
392
  fireUpdated(data) {