Skip to content

Commit

Permalink
Remove 'Dockstore' from selection in register tool
Browse files Browse the repository at this point in the history
  • Loading branch information
garyluu committed Sep 7, 2018
1 parent fe3b350 commit 12d11a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/container/register-tool/register-tool.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class RegisterToolComponent implements OnInit, AfterViewChecked {
friendlyRepositoryKeys(): Array<string> {
// TODO: Remove this section when GitLab is enabled
const friendlyRepositoryKeys = this.registerToolService.friendlyRepositoryKeys();
return friendlyRepositoryKeys.filter(key => key !== 'GitLab');
return friendlyRepositoryKeys.filter(key => key !== 'GitLab' && key !== 'Dockstore');
// TODO: Uncomment this section when GitLab is enabled
// return this.registerToolService.friendlyRepositoryKeys();
}
Expand Down

0 comments on commit 12d11a9

Please sign in to comment.