Fix button sound playing when clicked outside of buttons

This commit is contained in:
Dennis Postma 2024-11-02 13:54:16 +01:00
parent a299d5dc55
commit e38c402266

View File

@ -40,7 +40,7 @@ watch(
// #209: Play sound when a button is pressed
addEventListener('click', (event) => {
if (event.target !instanceof HTMLButtonElement) {
if (!(event.target instanceof HTMLButtonElement)) {
return
}
const audio = new Audio('/assets/music/click-btn.mp3')