Skip to content

Commit

Permalink
#82: update naming, add more details to appIssueCard
Browse files Browse the repository at this point in the history
  • Loading branch information
iam-flo committed Sep 18, 2024
1 parent 71a43f8 commit 6ad7cb8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
<div class="flex justify-between font-bold text-sm mb-3">
{{ pullRequest().title }}
@if (getMostRecentReview(); as review) {
@if(review.state === 'APPROVED') {
@if (review.state === 'APPROVED') {
<ng-icon [svg]="octCheck" size="16"></ng-icon>
} @else if(review.state === 'DISMISSED') {
} @else if (review.state === 'DISMISSED') {
<ng-icon [svg]="octX" size="16"></ng-icon>
} @else if (review.state === 'COMMENTED') {
<ng-icon [svg]="octComment" size="16"></ng-icon>
Expand Down

0 comments on commit 6ad7cb8

Please sign in to comment.