onSelect()

in ui/src/app/viewer/treemap/treemap.component.ts [78:83]


  onSelect(event: any) {
    const row = event.selection[0].row;
    const selectedDirName = this.data[row][0] as string;

    this.newPathEvent.emit(selectedDirName);
  }