We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The 'GitHub Issue Add Details ' script no longer works (in existing or new comments of issue/pull requests). Instead it shows in Console this error:
TypeError: Cannot read properties of null (reading 'parentNode')
referring to line 44:
GitHub-userscripts/github-issue-add-details.user.js
Line 44 in 4983620
Tested in a fresh Chrome profile witn only TM/VM installed.
The text was updated successfully, but these errors were encountered:
Thanks @darkred!
I keep meaning to update the code, but have been overly busy :(
Try this change:
// Add insert details button function addDetailsButton() { const button = document.createElement("button"); button.type = "button"; button.className = "ghad-details toolbar-item tooltipped tooltipped-n"; button.setAttribute("aria-label", "Add a details/summary block"); button.setAttribute("tabindex", "-1"); button.innerHTML = icon; [...document.querySelectorAll(".toolbar-commenting")].forEach(el => { if (el && !$(".ghad-details", el)) { const btn = $("[aria-label*='Add a task list']", el); btn.before(button.cloneNode(true)); } }); }
Sorry, something went wrong.
Thank you for your quick response!
I tested it and it works ok in New Issue/PR forms and in existing Issues/PRs | New Comment form
If you would be so kind, when you have the chance, could you make it also work when editing existing comments in issues/PRs, please?
I finally got around to updating the userscript, but I didn't add the enhancement you requested... once I find some more free time! 😞
No branches or pull requests
The 'GitHub Issue Add Details ' script no longer works (in existing or new comments of issue/pull requests).
Instead it shows in Console this error:
referring to line 44:
GitHub-userscripts/github-issue-add-details.user.js
Line 44 in 4983620
Tested in a fresh Chrome profile witn only TM/VM installed.
The text was updated successfully, but these errors were encountered: