Skip to content

Commit

Permalink
Fix code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Format Bot committed Jan 4, 2024
1 parent e0f2b00 commit e60634f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/procedures/music-app/music-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit e60634f

Please sign in to comment.