fixes
This commit is contained in:
@@ -44,7 +44,7 @@ class GithubPrivateRepository extends Component
|
||||
|
||||
public function mount()
|
||||
{
|
||||
$this->parameters = get_parameters();
|
||||
$this->parameters = getRouteParameters();
|
||||
$this->query = request()->query();
|
||||
$this->repositories = $this->branches = collect();
|
||||
$this->github_apps = GithubApp::private();
|
||||
|
||||
@@ -53,7 +53,7 @@ class GithubPrivateRepositoryDeployKey extends Component
|
||||
if (config('app.env') === 'local') {
|
||||
$this->repository_url = 'https://github.com/coollabsio/coolify-examples';
|
||||
}
|
||||
$this->parameters = get_parameters();
|
||||
$this->parameters = getRouteParameters();
|
||||
$this->query = request()->query();
|
||||
$this->private_keys = PrivateKey::where('team_id', session('currentTeam')->id)->get();
|
||||
}
|
||||
|
||||
@@ -43,7 +43,7 @@ class PublicGitRepository extends Component
|
||||
$this->repository_url = 'https://github.com/coollabsio/coolify-examples';
|
||||
$this->port = 3000;
|
||||
}
|
||||
$this->parameters = get_parameters();
|
||||
$this->parameters = getRouteParameters();
|
||||
$this->query = request()->query();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user