This commit is contained in:
Andras Bacsai
2023-06-23 11:10:35 +02:00
parent 97231bb477
commit 3b8fb073f4
2 changed files with 2 additions and 2 deletions

View File

@@ -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()
{