Jelajahi Sumber

fix: correct event listener for adjuster init()

jmacura 4 tahun lalu
induk
melakukan
b738facb0d
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      src/app.service.ts

+ 1 - 1
src/app.service.ts

@@ -134,7 +134,7 @@ export class AppService {
     /*this.hsMapService
       .loaded()
       .then((map) => this.hsMapService.repopulateLayers([]));*/
-    this.hsEventBus.layerLoads.subscribe(() => {
+    this.hsEventBus.layoutLoads.subscribe(() => {
       this.init();
     });
   }