Skip to content

Commit dd85cd4

Browse files
authored
Add side border to draft PR cards (#426)
Add side border to draft PR cards
1 parent 5ff7bd6 commit dd85cd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/shared/issue-pr-card/issue-pr-card.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export class IssuePrCardComponent {
3838
getIssueOpenOrCloseColorCSSClass() {
3939
if (this.issue.state === 'OPEN') {
4040
if (this.issue.isDraft) {
41-
return 'grey';
41+
return 'border-gray';
4242
} else {
4343
return 'border-green';
4444
}

0 commit comments

Comments
 (0)