This is the codeAbility Sharing Platform! Learn more about the
codeAbility Sharing Platform
.
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
codeAbility Sharing Platform
Manage
Activity
Members
Labels
Plan
Issues
41
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
development
sharing
codeAbility Sharing Platform
Commits
4a0c08ba
Commit
4a0c08ba
authored
4 years ago
by
Daniel Rainer
Browse files
Options
Downloads
Patches
Plain Diff
Use type parameter with sets
parent
e4eff121
Branches
Branches containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/webapp/app/search/search.component.ts
+3
-3
3 additions, 3 deletions
src/main/webapp/app/search/search.component.ts
with
3 additions
and
3 deletions
src/main/webapp/app/search/search.component.ts
+
3
−
3
View file @
4a0c08ba
...
...
@@ -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
>
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment