diff options
-rw-r--r-- | source/features/close-as-unplanned.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/features/close-as-unplanned.tsx b/source/features/close-as-unplanned.tsx index 3bd99dda..3be5ab00 100644 --- a/source/features/close-as-unplanned.tsx +++ b/source/features/close-as-unplanned.tsx @@ -27,6 +27,8 @@ function update(dropdown: HTMLElement): void { unplannedButton.append(icon); unplannedButton.id = id; unplannedButton.classList.add('btn', 'tooltipped', 'tooltipped-nw', 'mr-0'); + // Prevent content from being changed #7024 + unplannedButton.classList.remove('js-comment-and-button'); unplannedButton.setAttribute('aria-label', 'Close as not planned.\nWon’t fix, can’t repro, duplicate, stale'); dropdown.replaceWith(unplannedButton); |