You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem: widget.settings.project is an array, so gets stripped out during printing (I assume because it's treated as a color code).
(My personal suggested fix would just be to remove this extra stuff, it doesn't seem useful to me and the user can always put the project name in title if they want. Or maybe it can show issue count after the hyphen. Would be happy to file a PR either way!)
Nit 1: the code documentation says that the project(s) are passed as:
projects []string `help:"An array of projects to get data from"`
Nit 2: there is no whitespace between the word Jira and the hyphen, which I don't think looks good. (The Hackernews module has a space before and after the hyphen.)
The text was updated successfully, but these errors were encountered:
What's broken?
My config (relevant parts):
Broken part in code: modules/jira/widget.go#L80
Problem:
widget.settings.project
is an array, so gets stripped out during printing (I assume because it's treated as a color code).(My personal suggested fix would just be to remove this extra stuff, it doesn't seem useful to me and the user can always put the project name in
title
if they want. Or maybe it can show issue count after the hyphen. Would be happy to file a PR either way!)Nit 1: the code documentation says that the project(s) are passed as:
...but it is in fact
project
and notprojects
.Nit 2: there is no whitespace between the word
Jira
and the hyphen, which I don't think looks good. (The Hackernews module has a space before and after the hyphen.)The text was updated successfully, but these errors were encountered: