diff --git a/bookmarklet.js b/bookmarklet.js index 8f4d005..2c1647e 100644 --- a/bookmarklet.js +++ b/bookmarklet.js @@ -831,7 +831,7 @@ body { } .issue-icon[type="task"] { background-color: ORANGE !important; - background-image: url(https://qoomon.github.io/Jira-Issue-Card-Printer/resources/icons/Task.png); + background-image: url(https://qoomon.github.io/Jira-Issue-Card-Printer/resources/icons/Gear.png); } .issue-estimate { position: absolute; @@ -1322,7 +1322,7 @@ body { issueData.summary = data.fields.summary; - issueData.description = data.renderedFields.description.replace(/

/, ""); + issueData.description = data.renderedFields.description.replace(/^

(.*)<\/p>$/, "$1"); if (data.fields.assignee) { issueData.assignee = data.fields.assignee.displayName; diff --git a/resources/icons/Checkmark.png b/resources/icons/Checkmark.png new file mode 100644 index 0000000..5f752a0 Binary files /dev/null and b/resources/icons/Checkmark.png differ diff --git a/resources/icons/Dot.png b/resources/icons/Dot.png new file mode 100644 index 0000000..0a2aeff Binary files /dev/null and b/resources/icons/Dot.png differ diff --git a/resources/icons/Gear.png b/resources/icons/Gear.png new file mode 100644 index 0000000..a232e25 Binary files /dev/null and b/resources/icons/Gear.png differ diff --git a/resources/icons/Task.png b/resources/icons/Task.png deleted file mode 100644 index 23f4233..0000000 Binary files a/resources/icons/Task.png and /dev/null differ