Skip to content
This repository has been archived by the owner on Jul 23, 2019. It is now read-only.

Commit

Permalink
fix(gitprovider-importapp): show all GitHub repositories in dropdown (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
vikram-raj authored and edewit committed Aug 9, 2018
1 parent c02717f commit c343886
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,10 @@ <h3>Authorized Account Information</h3>
<label for="ghRepo" class="col-sm-2 control-label">Repository</label>
<div class="col-sm-10" [class.has-error]="ghRepo.invalid && (ghRepo.dirty || ghRepo.touched)">
<input id="ghRepo" name="ghRepo" [(ngModel)]="launcherComponent.summary.gitHubDetails.repository" placeholder="Select Repository"
autocomplete="off"
[typeahead]="launcherComponent?.summary.gitHubDetails.repositoryList"
[typeaheadMinLength]="0"
[typeaheadOptionsLimit]="launcherComponent?.summary.gitHubDetails.repositoryList?.length"
[disabled]="launcherComponent?.summary?.gitHubDetails?.organization === undefined || launcherComponent?.summary?.gitHubDetails?.repositoryList?.length === 0"
[existingRepository]="launcherComponent?.summary?.gitHubDetails?.repositoryList" #ghRepo="ngModel" required
class="form-control">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,7 @@
}
}
}
ul.dropdown-menu {
max-height: 400px;
}
}

0 comments on commit c343886

Please sign in to comment.