Skip to content

Commit e359f68

Browse files
fix(cascading simple combo): Adding spacing
1 parent e61f17e commit e359f68

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/lists/combo/simple-combo-cascading/simple-combo-cascading.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class SimpleComboCascadingComponent implements OnInit {
2424

2525
public countryChanging(e: ISimpleComboSelectionChangingEventArgs) {
2626
this.selectedCountry = e.newSelection as Country;
27-
if(e.newSelection){
27+
if (e.newSelection){
2828
this.isLoadingRegions = true;
2929
this.loadingTime = 2000;
3030
}
@@ -42,7 +42,7 @@ export class SimpleComboCascadingComponent implements OnInit {
4242

4343
public regionChanging(e: ISimpleComboSelectionChangingEventArgs) {
4444
this.selectedRegion = e.newSelection as Region;
45-
if(e.newSelection){
45+
if (e.newSelection){
4646
this.isLoadingCities = true;
4747
this.loadingTime = 2000;
4848
}

0 commit comments

Comments
 (0)