tab()

in frontend/src/app/customer-experience-analyst/home/home.component.ts [99:113]


  tab(val: any) {
    if (val == 'Looker') {
      this.lookerTab = true;
    } else if (val == 'FAD') {
      this.fadTab = true;
      this.lookerTab = false;
    } else if (val == 'FRA') {
      this.fraTab = true;
      this.lookerTab = false;
    } else if (val == 'GAD') {
      this.gadTab = true;
      this.lookerTab = false;
    }

  }