This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit 4a0c08ba authored by Daniel Rainer's avatar Daniel Rainer
Browse files

Use type parameter with sets

parent e4eff121
Branches
No related merge requests found
......@@ -37,9 +37,9 @@ export class SearchComponent implements OnInit, OnDestroy {
gitFilesAggregation?: IGitFilesAggregation;
private filterSelectionSubscription: Subscription = new Subscription();
private selectedRepositories = new Set();
private selectedUniversities = new Set();
private selectedFileFormats = new Set();
private selectedRepositories = new Set<string>();
private selectedUniversities = new Set<string>();
private selectedFileFormats = new Set<string>();
public paramGroup: QueryParamGroup;
private componentDestroyed$ = new Subject<void>();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment