future-proof fix for AWS status page (paste into your browser console when viewing AWS status page)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| document.querySelectorAll('#current_events_block img').forEach(pic => { if (pic.getAttribute('src') === '/images/status0.gif') { pic.setAttribute('src', '/images/status3.gif'); } }); | |
| document.querySelectorAll('#current_events_block td').forEach(row => { if (row.innerHTML === 'Service is operating normally') { row.innerHTML = 'Everything is actually broken'; } }) |