Revert "adding assignee to tui"

This reverts commit c72b15f721.
This commit is contained in:
Robin Olsen
2026-03-11 20:37:05 +01:00
parent a5b04997a7
commit 9a0cb74e39
8 changed files with 19 additions and 116 deletions

View File

@@ -66,19 +66,11 @@ func (i *IssueDetail) refreshContent() {
styles.LabelStyle.Render("Priority:") + styles.ValueStyle.Render(priorityCodeName(i.issue.Priority)),
)
assignee := i.issue.Assignee
if assignee == "" {
assignee = "—"
}
assigneeRow := styles.RowStyle.Render(
styles.LabelStyle.Render("Assignee:") + styles.ValueStyle.Render(assignee),
)
descLabel := styles.LabelStyle.Render("Description:")
descContent := styles.ValueStyle.Render(i.issue.Description)
var parts []string
parts = append(parts, titleRow, idRow, typeRow, statusRow, priorityRow, assigneeRow, descLabel, descContent)
parts = append(parts, titleRow, idRow, typeRow, statusRow, priorityRow, descLabel, descContent)
// Comments section
commentsLabel := styles.LabelStyle.Render("Comments:")