fix printing issue deadline #388

Merged
6543 merged 4 commits from noerw/tea:noerw-patch-1 into master 2021-09-06 10:45:25 +00:00

View File

@ -101,6 +101,9 @@ func (x printableIssue) FormatField(field string) string {
case "updated":
return FormatTime(x.Updated)
case "deadline":
if x.Deadline == nil {
return ""
}
return FormatTime(*x.Deadline)
case "milestone":
if x.Milestone != nil {