Add drumsReviewed filter

This commit is contained in:
Geomitron
2025-03-11 22:57:04 -05:00
parent 3881a69176
commit a70f968806
6 changed files with 47 additions and 2 deletions

View File

@@ -111,6 +111,13 @@ export function drumTypeDisplay(drumType: DrumTypeName | null) {
case null: return 'Any Drum Type'
}
}
export function drumsReviewedDisplay(drumsReviewed: boolean) {
if (drumsReviewed) {
return 'Quality Reviewed'
} else {
return 'Any Quality'
}
}
export function instrumentToDiff(instrument: Instrument | 'vocals') {
switch (instrument) {
case 'guitar': return 'diff_guitar'