Unpin Jira comment box

Unpins Jira's sticky comment box

// ==UserScript==
// @name			Unpin Jira comment box
// @namespace		Violentmonkey Scripts
// @match			https://jira.*/*
// @grant			none
// @version			1.2
// @author			LeviOliveira
// @description		Unpins Jira's sticky comment box
// @license			MIT
// ==/UserScript==
 
// Set position to static instead of sticky
let observer = new MutationObserver(function(mutation) {
	// document.getElementById("addcomment").classList.remove("sticky");
	document.getElementById("addcomment").style.position = "static"
});
 
observer.observe(document.documentElement || document.body, {
	childList: true,
	subtree: true
});