Skip to content

Commit

Permalink
chore: minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fonstack committed Dec 4, 2024
1 parent 459f51c commit 04f88e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ export const SubmissionCard = ({
const getText = () => {
const labels = (ghIssue as GithubPR).labels;
if (labels.includes("complete-fix") && labels.includes("complete-test")) {
console.log(ghIssue);
return `COMPLETE (fix & test) -> ${(ghIssue as GithubPR).linkedIssue?.severity}`;
} else if (labels.includes("complete-fix")) {
return `COMPLETE (fix) -> ${(ghIssue as GithubPR).linkedIssue?.severity}`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ export const SubmissionsListPage = () => {
submission={submission}
ghIssue={
getGhIssueFromSubmission(submission, vaultGithubIssues) ||
getGhPRFromSubmission(submission, vaultGithubPRs)
getGhPRFromSubmission(submission, vaultGithubPRs, vaultGithubIssues)
}
/>
);
Expand Down

0 comments on commit 04f88e2

Please sign in to comment.