Skip to content

Commit

Permalink
Merge pull request #452 from dockstore/feature/1802/removeDockstoreFr…
Browse files Browse the repository at this point in the history
…omSourceCodeRepo

Remove 'Dockstore' from selection in register tool
  • Loading branch information
garyluu authored Sep 10, 2018
2 parents 5c1013a + 12d11a9 commit 85d3333
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 85d3333

Please sign in to comment.