2 Commits

Author SHA1 Message Date
kazuki
f5e73a3afb Merge c3a2945f4f into 588719df91 2024-12-05 09:49:35 +09:00
kazuki kumo
c3a2945f4f fix: vocabulary export 2024-12-05 09:33:24 +09:00

View File

@@ -182,7 +182,7 @@
function downloadVocabulary() { function downloadVocabulary() {
const vocabulary = new Set( const vocabulary = new Set(
$chords.map((it) => $chords.map((it) =>
"phrase" in it ? plainPhrase(it.phrase, $osLayout).trim() : "", "phrase" in it ? encodeChord(it, $osLayout).trim() : "",
), ),
); );
vocabulary.delete(""); vocabulary.delete("");