@flarehr/apollo-super-selection 1.3.1018 → 1.3.1210

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.
@@ -284,7 +284,7 @@ class TapSubscriber extends datoramaAkita.Subscriber {
284
284
  }
285
285
  }
286
286
 
287
- const AppVersion = '1.3.1018';
287
+ const AppVersion = '1.3.1210';
288
288
 
289
289
  // -------------------------------------------------------------------------------------
290
290
  // guards
@@ -3935,10 +3935,6 @@ const CustomFund = class {
3935
3935
  {
3936
3936
  label: CustomFundTypes.SelfManagedFund,
3937
3937
  value: SuperSelectionAppRoutes.SelfManagedFund
3938
- },
3939
- {
3940
- label: CustomFundTypes.DefaultFund,
3941
- value: SuperSelectionAppRoutes.DefaultFund
3942
3938
  }
3943
3939
  ];
3944
3940
  if (superSelectionAppService.isFeaturedFundsEnabled &&
@@ -3948,6 +3944,10 @@ const CustomFund = class {
3948
3944
  value: SuperSelectionAppRoutes.FeaturedFunds
3949
3945
  });
3950
3946
  }
3947
+ this.fundOptionsList.push({
3948
+ label: CustomFundTypes.DefaultFund,
3949
+ value: SuperSelectionAppRoutes.DefaultFund
3950
+ });
3951
3951
  this.currentCustomFund =
3952
3952
  this.fundOptionsList.find((item) => item.value === currentRoute) || this.currentCustomFund;
3953
3953
  navigationService.navigateInternally(this.history, currentRoute);
@@ -28,10 +28,6 @@ export class CustomFund {
28
28
  {
29
29
  label: CustomFundTypes.SelfManagedFund,
30
30
  value: SuperSelectionAppRoutes.SelfManagedFund
31
- },
32
- {
33
- label: CustomFundTypes.DefaultFund,
34
- value: SuperSelectionAppRoutes.DefaultFund
35
31
  }
36
32
  ];
37
33
  if (superSelectionAppService.isFeaturedFundsEnabled &&
@@ -41,6 +37,10 @@ export class CustomFund {
41
37
  value: SuperSelectionAppRoutes.FeaturedFunds
42
38
  });
43
39
  }
40
+ this.fundOptionsList.push({
41
+ label: CustomFundTypes.DefaultFund,
42
+ value: SuperSelectionAppRoutes.DefaultFund
43
+ });
44
44
  this.currentCustomFund =
45
45
  this.fundOptionsList.find((item) => item.value === currentRoute) || this.currentCustomFund;
46
46
  navigationService.navigateInternally(this.history, currentRoute);
@@ -260,7 +260,7 @@ class TapSubscriber extends Subscriber {
260
260
  }
261
261
  }
262
262
 
263
- const AppVersion = '1.3.1018';
263
+ const AppVersion = '1.3.1210';
264
264
 
265
265
  // -------------------------------------------------------------------------------------
266
266
  // guards
@@ -3911,10 +3911,6 @@ const CustomFund = class {
3911
3911
  {
3912
3912
  label: CustomFundTypes.SelfManagedFund,
3913
3913
  value: SuperSelectionAppRoutes.SelfManagedFund
3914
- },
3915
- {
3916
- label: CustomFundTypes.DefaultFund,
3917
- value: SuperSelectionAppRoutes.DefaultFund
3918
3914
  }
3919
3915
  ];
3920
3916
  if (superSelectionAppService.isFeaturedFundsEnabled &&
@@ -3924,6 +3920,10 @@ const CustomFund = class {
3924
3920
  value: SuperSelectionAppRoutes.FeaturedFunds
3925
3921
  });
3926
3922
  }
3923
+ this.fundOptionsList.push({
3924
+ label: CustomFundTypes.DefaultFund,
3925
+ value: SuperSelectionAppRoutes.DefaultFund
3926
+ });
3927
3927
  this.currentCustomFund =
3928
3928
  this.fundOptionsList.find((item) => item.value === currentRoute) || this.currentCustomFund;
3929
3929
  navigationService.navigateInternally(this.history, currentRoute);