tickera-angular-components 0.0.1-dev.146 → 0.0.1-dev.147
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.
|
@@ -6881,7 +6881,7 @@ class CitySelectComponent {
|
|
|
6881
6881
|
loadCities() {
|
|
6882
6882
|
this.loading = true;
|
|
6883
6883
|
this.citiesService
|
|
6884
|
-
.fetchCities({
|
|
6884
|
+
.fetchCities({ state_id: this.stateId ?? undefined })
|
|
6885
6885
|
.pipe(takeUntil(this.destroy$))
|
|
6886
6886
|
.subscribe({
|
|
6887
6887
|
next: (response) => {
|
|
@@ -7148,7 +7148,7 @@ class StateSelectComponent {
|
|
|
7148
7148
|
loadStates() {
|
|
7149
7149
|
this.loading = true;
|
|
7150
7150
|
this.statesService
|
|
7151
|
-
.fetchStates({
|
|
7151
|
+
.fetchStates({ country_id: this.countryId })
|
|
7152
7152
|
.pipe(takeUntil(this.destroy$))
|
|
7153
7153
|
.subscribe({
|
|
7154
7154
|
next: ({ data: { states } }) => {
|