mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
Refactor repository selection logic in GithubPrivateRepository.php
This commit is contained in:
parent
4d72787c83
commit
6027bee3b8
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ class GithubPrivateRepository extends Component
|
||||||
}
|
}
|
||||||
$this->repositories = $this->repositories->sortBy('name');
|
$this->repositories = $this->repositories->sortBy('name');
|
||||||
if ($this->repositories->count() > 0) {
|
if ($this->repositories->count() > 0) {
|
||||||
$this->selected_repository_id = data_get($this->repositories,'0.id');
|
$this->selected_repository_id = data_get($this->repositories->first(), 'id');
|
||||||
}
|
}
|
||||||
$this->current_step = 'repository';
|
$this->current_step = 'repository';
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue