From 82b5ae6deb3057b53e40a6c378709a03020e00c3 Mon Sep 17 00:00:00 2001 From: Brian Cully Date: Mon, 10 Mar 2025 08:09:24 -0400 Subject: change ‘min’ in chord name to ‘m’ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- key-picker.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/key-picker.mjs b/key-picker.mjs index 0a9068b..431fdcd 100644 --- a/key-picker.mjs +++ b/key-picker.mjs @@ -25,7 +25,7 @@ function formChanged(form) { const availableScales = allScales.reduce((acc, s, i) => { - const suffix = i % 2 == 0 ? '' : 'min'; + const suffix = i % 2 == 0 ? '' : 'm'; if (scale.includes(s.tonic) && scale.includes(s.third) && scale.includes(s.fifth)) { return acc.concat(`${s.tonic}${suffix}`); } -- cgit v1.3