fix
This commit is contained in:
		@@ -55,7 +55,7 @@ class GithubPrivateRepositoryDeployKey extends Component
 | 
			
		||||
        }
 | 
			
		||||
        $this->parameters = getRouteParameters();
 | 
			
		||||
        $this->query = request()->query();
 | 
			
		||||
        $this->private_keys = PrivateKey::where('team_id', session('currentTeam')->id)->get();
 | 
			
		||||
        $this->private_keys = PrivateKey::where('team_id', session('currentTeam')->id)->where('id', '!=', 0)->get();
 | 
			
		||||
    }
 | 
			
		||||
    public function instantSave()
 | 
			
		||||
    {
 | 
			
		||||
 
 | 
			
		||||
@@ -74,7 +74,7 @@ Route::middleware(['auth'])->group(function () {
 | 
			
		||||
    ]))->name('server.proxy');
 | 
			
		||||
    Route::get('/server/{server_uuid}/private-key', fn () => view('server.private-key', [
 | 
			
		||||
        'server' => Server::ownedByCurrentTeam()->whereUuid(request()->server_uuid)->firstOrFail(),
 | 
			
		||||
        'privateKeys' => PrivateKey::ownedByCurrentTeam()->get(),
 | 
			
		||||
        'privateKeys' => PrivateKey::ownedByCurrentTeam()->where('id', '!=', 0)->get(),
 | 
			
		||||
    ]))->name('server.private-key');
 | 
			
		||||
    Route::get('/server/{server_uuid}/destinations', fn () => view('server.destinations', [
 | 
			
		||||
        'server' => Server::ownedByCurrentTeam(['name'])->whereUuid(request()->server_uuid)->firstOrFail()
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user