mirror of
https://github.com/boolean-maybe/tiki
synced 2026-04-21 13:37:20 +00:00
tags not shown in expanded view
This commit is contained in:
parent
a876ca3479
commit
bffe533edc
1 changed files with 1 additions and 1 deletions
|
|
@ -67,7 +67,7 @@ func buildExpandedTaskContent(task *taskpkg.Task, colors *config.ColorConfig, av
|
|||
// Build tags string
|
||||
tagsStr := ""
|
||||
if len(task.Tags) > 0 {
|
||||
tagsStr = colors.TaskBoxLabelColor + "Tags:[-] " + colors.TaskBoxTagValueColor + util.TruncateText(fmt.Sprintf("%v", task.Tags), availableWidth-6) + "[-]"
|
||||
tagsStr = colors.TaskBoxLabelColor + "Tags:[-] " + colors.TaskBoxTagValueColor + util.TruncateText(strings.Join(task.Tags, ", "), availableWidth-6) + "[-]"
|
||||
}
|
||||
|
||||
// Build priority/points line
|
||||
|
|
|
|||
Loading…
Reference in a new issue