Explorar el Código

fix: correct event listener for adjuster init()

jmacura hace 4 años
padre
commit
b738facb0d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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();
     });
   }