You can edit every element though apparently
You must log in or register to comment.
sounds like
contentEditable
got triggered on one of the elements on the page. if you want to try and get around this before they fix it you can press F12 and paste this into your console:document.querySelectorAll("[contentEditable]").forEach(x=>x.contentEditable=false);
document.querySelectorAll(“[contentEditable]”).forEach(x=>x.contentEditable=false);
That worked, thanks homie I knew some of you would be nerdy enough to help me out
np glad it worked.
Heroes of Lemmy