tango-app-ui-ticket-user 3.0.48-dev → 3.0.49-dev

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -564,6 +564,7 @@ class InfraticketsComponent {
564
564
  let data = JSON.parse(localStorage.getItem("header-filters") || "");
565
565
  data.store = value.storeId;
566
566
  data.client = value.clientId;
567
+ data.clientName = value?.clientName ? value?.clientName : 'Stores';
567
568
  localStorage.setItem("header-filters", JSON.stringify(data));
568
569
  this.router.navigate([`/manage/stores/infra-ticket`], { queryParams: { storeId: value.storeId, type: "infra" } });
569
570
  }