Fix provider text
This commit is contained in:
parent
75403078d2
commit
762644d23d
2 changed files with 4 additions and 4 deletions
|
@ -259,13 +259,13 @@ export const SynchronizedLyrics = ({
|
||||||
{source && (
|
{source && (
|
||||||
<LyricLine
|
<LyricLine
|
||||||
className="lyric-credit"
|
className="lyric-credit"
|
||||||
text={`Lyrics provided by ${source}`}
|
text={`Provided by ${source}`}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{remote && (
|
{remote && (
|
||||||
<LyricLine
|
<LyricLine
|
||||||
className="lyric-credit"
|
className="lyric-credit"
|
||||||
text={`(Matched as ${artist} by ${name})`}
|
text={`"${name} by ${artist}"`}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{lyrics.map(([, text], idx) => (
|
{lyrics.map(([, text], idx) => (
|
||||||
|
|
|
@ -27,13 +27,13 @@ export const UnsynchronizedLyrics = ({
|
||||||
{source && (
|
{source && (
|
||||||
<LyricLine
|
<LyricLine
|
||||||
className="lyric-credit"
|
className="lyric-credit"
|
||||||
text={`Lyrics provided by ${source}`}
|
text={`Provided by ${source}`}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{remote && (
|
{remote && (
|
||||||
<LyricLine
|
<LyricLine
|
||||||
className="lyric-credit"
|
className="lyric-credit"
|
||||||
text={`(Matched as ${artist} by ${name})`}
|
text={`"${name} by ${artist}"`}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{lines.map((text, idx) => (
|
{lines.map((text, idx) => (
|
||||||
|
|
Reference in a new issue