Skip to content

Commit

Permalink
Merge pull request #73 from winebarrel/show_draft_failure
Browse files Browse the repository at this point in the history
Show draft failure as ❌
  • Loading branch information
winebarrel authored Dec 17, 2024
2 parents f39f9e9 + c2152e5 commit 3344e1a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Pulse/ContentListView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ struct ContentListView: View {

if !pull.pending {
Text(pull.statusEmoji)
} else if pull.checkResult == .failure {
Text("")
}
Text(pull.title)
.multilineTextAlignment(.leading)
Expand Down

0 comments on commit 3344e1a

Please sign in to comment.