We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2cef43 commit 3cc19dcCopy full SHA for 3cc19dc
modules/trello/widget.go
@@ -67,9 +67,10 @@ func (widget *Widget) contentFrom(searchResult *SearchResult) string {
67
str := ""
68
69
for list, cardArray := range searchResult.TrelloCards {
70
- str = fmt.Sprintf("%s [red]Cards in %s[white]\n", str, list)
+ str = str + fmt.Sprintf(" [red]%s[white]\n", list)
71
+
72
for _, card := range cardArray {
- str = fmt.Sprintf("%s [green]%s[white]\n", str, card.Name)
73
+ str = str + fmt.Sprintf(" %s[white]\n", card.Name)
74
}
75
str = fmt.Sprintf("%s\n", str)
76
0 commit comments