StarvingMartist@sh.itjust.works to Mildly Infuriating@lemmy.worldEnglish · 1 day agoFirestone email unsubscribe page isn't actually clickable so you can't unsubscribesh.itjust.worksimagemessage-square17fedilinkarrow-up1221arrow-down13file-text
arrow-up1218arrow-down1imageFirestone email unsubscribe page isn't actually clickable so you can't unsubscribesh.itjust.worksStarvingMartist@sh.itjust.works to Mildly Infuriating@lemmy.worldEnglish · 1 day agomessage-square17fedilinkfile-text
minus-squareunderisk@lemmy.mllinkfedilinkEnglisharrow-up3·18 hours agosounds 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);
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);