fix missing export lyrics button

This commit is contained in:
jeffvli
2026-01-01 20:08:27 -08:00
parent c7809c62ce
commit af8470e254
2 changed files with 4 additions and 1 deletions
@@ -13,6 +13,7 @@ import { Tooltip } from '/@/shared/components/tooltip/tooltip';
import { LyricsOverride } from '/@/shared/types/domain-types';
interface LyricsActionsProps {
hasLyrics: boolean;
index: number;
languages: { label: string; value: string }[];
offsetMs: number;
@@ -27,6 +28,7 @@ interface LyricsActionsProps {
}
export const LyricsActions = ({
hasLyrics,
index,
languages,
offsetMs,
@@ -51,7 +53,7 @@ export const LyricsActions = ({
return (
<>
<div style={{ position: 'relative', width: '100%' }}>
{languages.length > 0 && (
{hasLyrics && (
<Center pb="md">
{languages.length > 1 && (
<Select
+1
View File
@@ -519,6 +519,7 @@ export const Lyrics = ({ fadeOutNoLyricsMessage = true, settingsKey = 'default'
)}
<div className={styles.actionsContainer}>
<LyricsActions
hasLyrics={!!lyrics}
index={index}
languages={languages}
offsetMs={currentOffsetMs}