From e60634f14c84ccbdaf1b4e0aa6bead4eb494caf9 Mon Sep 17 00:00:00 2001 From: Format Bot Date: Thu, 4 Jan 2024 19:34:36 +0000 Subject: [PATCH] Fix code formatting --- src/procedures/music-app/music-app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/procedures/music-app/music-app.js b/src/procedures/music-app/music-app.js index a6082173..7fa9e6ed 100644 --- a/src/procedures/music-app/music-app.js +++ b/src/procedures/music-app/music-app.js @@ -63,7 +63,7 @@ MusicApp.getDrumOneShotNames = async function ( //Ensure at least one field is selected if (packName !== "" || drumType !== "") { queriedJSON = drumLibrary.drumSoundLibrary.filter(function (obj) { // Check if field value is empty before finding obj with value. - return(packName === "" || obj.packName === packName) && + return (packName === "" || obj.packName === packName) && (drumType === "" || obj.Instrument === drumType); }); } else {