diff --git a/app/Http/Livewire/Boarding.php b/app/Http/Livewire/Boarding.php index 0b1b9b86b..524e9ff94 100644 --- a/app/Http/Livewire/Boarding.php +++ b/app/Http/Livewire/Boarding.php @@ -154,7 +154,7 @@ uZx9iFkCELtxrh31QJ68AAAAEXNhaWxANzZmZjY2ZDJlMmRkAQIDBA== public function createNewProject() { $this->createdProject = Project::create([ - 'name' => generate_random_name(), + 'name' => "My first project", 'team_id' => currentTeam()->id ]); $this->currentState = 'create-resource'; diff --git a/resources/views/livewire/project/new/github-private-repository.blade.php b/resources/views/livewire/project/new/github-private-repository.blade.php index d6a11de92..72950718b 100644 --- a/resources/views/livewire/project/new/github-private-repository.blade.php +++ b/resources/views/livewire/project/new/github-private-repository.blade.php @@ -7,7 +7,7 @@
Deploy any public or private git repositories through a GitHub App.
- @if ($github_apps->count() > 0) + @if ($github_apps->count() == 0)
@if ($current_step === 'github_apps')
@else -
-
No Git App found.
- - Add - +
+ No GitHub Application found. Please create a new GitHub Application.
@endif