diff options
author | streetturtle <streetturtle@users.noreply.github.com> | 2021-04-21 11:01:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-21 11:01:05 -0400 |
commit | 9d9f435f21690c36dc7573abdcdcfaf4a0e4517e (patch) | |
tree | 5a29fb781094144c7cb4078e7705b674551a5b30 | |
parent | fb334f27fab3ff5dbbc05f3da42fb5d4a8628b00 (diff) |
[jira] fix build
-rw-r--r-- | jira-widget/jira.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jira-widget/jira.lua b/jira-widget/jira.lua index 6307af4..e475246 100644 --- a/jira-widget/jira.lua +++ b/jira-widget/jira.lua @@ -112,7 +112,7 @@ local function worker(user_args) local args = user_args or {} - local icon = args.icon or + local icon = args.icon or HOME_DIR .. '/.config/awesome/awesome-wm-widgets/jira-widget/icon/jira-mark-gradient-blue.svg' local host = args.host or show_warning('Jira host is unknown') local query = args.query or 'jql=assignee=currentuser() AND resolution=Unresolved' @@ -223,7 +223,7 @@ local function worker(user_args) widget = wibox.widget.textbox }, { - markup = "<span foreground='#888888'>" + markup = "<span foreground='#888888'>" .. issue.fields.assignee.displayName .. "</span>", widget = wibox.widget.textbox }, |