We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be0f4ca commit 1772cc1Copy full SHA for 1772cc1
1 file changed
src/components/Modal/CopyLyrics.vue
@@ -56,9 +56,8 @@ const rawLyrics = computed(() => {
56
57
const displayLyrics = computed(() => {
58
return rawLyrics.value.map((line, index) => {
59
- // 兼容 lrcData (content) 和 yrcData (words)
60
const text =
61
- line.words?.map((w) => w.word).join("") || (line as any).content || (line as any).text || "";
+ line.words?.map((w) => w.word).join("") || "";
62
const translation = line.translatedLyric || "";
63
const romaji = line.romanLyric || line.words?.map((w) => w.romanWord).join("") || "";
64
return {
0 commit comments