Skip to content

Commit b71ca68

Browse files
angular - minor type change
1 parent 9efac0d commit b71ca68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Angular/src/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export class AppComponent {
3636
this.cities = service.getCities();
3737
}
3838

39-
getFilteredCities = (options: EditCellInfo<Employee, number>): { store: State[] | City[]; filter: [string, string, number[]] | null } => ({
39+
getFilteredCities = (options: EditCellInfo<Employee, number>): { store: City[]; filter: [string, string, number[]] | null } => ({
4040
store: this.cities,
4141
filter: options.data ? ['StateID', '=', options.data.StateID] : null,
4242
});

0 commit comments

Comments
 (0)