We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e61f17e commit e359f68Copy full SHA for e359f68
1 file changed
src/app/lists/combo/simple-combo-cascading/simple-combo-cascading.component.ts
@@ -24,7 +24,7 @@ export class SimpleComboCascadingComponent implements OnInit {
24
25
public countryChanging(e: ISimpleComboSelectionChangingEventArgs) {
26
this.selectedCountry = e.newSelection as Country;
27
- if(e.newSelection){
+ if (e.newSelection){
28
this.isLoadingRegions = true;
29
this.loadingTime = 2000;
30
}
@@ -42,7 +42,7 @@ export class SimpleComboCascadingComponent implements OnInit {
42
43
public regionChanging(e: ISimpleComboSelectionChangingEventArgs) {
44
this.selectedRegion = e.newSelection as Region;
45
46
this.isLoadingCities = true;
47
48
0 commit comments