Greasy Fork

JIRA templates

Allows saving JIRA issue descriptions and comments for reuse.

< 脚本JIRA templates的反馈

评价:一般 - 脚本能用,但还有一些问题

§
发表于:2023-01-31

The templates do not show in a modal/popup like reassign or resolve an issue.

§
发表于:2023-01-31

Fixed by replacing the findEditors function because the old one will stop after finding the first editor by ID, but Jira has multiple editors with the same id ...

var findEditors = function() {
    const editors = document.getElementsByClassName("wiki-edit-content");
    for (let i = 0; i < editors.length; i++) {
       modifyEditor(editors[i]);
    }
};

发表回复

登录以发表回复。