async fetchSummary()

in ui/src/app/summary/summary.component.ts [33:42]


  async fetchSummary() {
    try {
      const res = await this.exploreService.getSummary(this.path);

      this.sizes = res.size;
      this.costs = res.cost;
    } catch (error) {
      console.error(`Error fetching summary for path ${this.path}: ${error}`);
    }
  }