Skip to content

Commit

Permalink
Merge branch 'master' into repository-404
Browse files Browse the repository at this point in the history
  • Loading branch information
brig authored Sep 10, 2023
2 parents 9a9a290 + ce10a3c commit 00a8916
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ const kindToDescription = (k: ProcessKind): string => {

class ProcessStatusTable extends React.PureComponent<Props> {
static renderCommitId(process?: ProcessEntry) {
if (!process || !process.commitId) {
if (!process || !process.commitId || !process.repoUrl) {
return ' - ';
}

return (
<GitHubLink
url={process.repoUrl!}
url={process.repoUrl}
commitId={process.commitId}
text={process.commitId}
/>
Expand Down Expand Up @@ -217,7 +217,7 @@ class ProcessStatusTable extends React.PureComponent<Props> {
}

static renderRepoPath(process?: ProcessEntry) {
if (!process || !process.commitId) {
if (!process || !process.commitId || !process.repoUrl) {
return '-';
}

Expand Down

0 comments on commit 00a8916

Please sign in to comment.