ngOnInit()

in toolings/tfjs-debugger/src/app/components/error_panel/error_panel.component.ts [69:79]


  ngOnInit() {
    // Show the error message panel when it is set.
    this.store.select(selectErrorMessage).subscribe(errorMessage => {
      if (!errorMessage) {
        this.curErrorMessage = undefined;
      } else {
        this.curErrorMessage = {...errorMessage};
      }
      this.changeDetectorRef.markForCheck();
    });
  }