Skip to content

Commit

Permalink
Remove unneeded placeholder from message (metabrainz#1769)
Browse files Browse the repository at this point in the history
  • Loading branch information
yvanzo committed Oct 29, 2020
1 parent bb8454c commit 5c826bb
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions root/artist/ArtistRecordings.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,20 @@ const FooterSwitch = ({
const showingAllText = l('Showing all recordings');
const showingStandaloneText = l('Showing only standalone recordings');
const showingVideosText = l('Showing only videos');
const showAllLink = exp.l(
'{show_all|Show all recordings}',
{show_all: `/artist/${artist.gid}/recordings`},
const showAllLink = (
<a href={`/artist/${artist.gid}/recordings`}>
{l('Show all recordings')}
</a>
);
const showStandaloneLink = exp.l(
'{show_sa|Show only standalone recordings}',
{show_sa: `/artist/${artist.gid}/recordings?standalone=1`},
const showStandaloneLink = (
<a href={`/artist/${artist.gid}/recordings?standalone=1`}>
{l('Show only standalone recordings')}
</a>
);
const showVideosLink = exp.l(
'{show_vid|Show only videos}',
{show_vid: `/artist/${artist.gid}/recordings?video=1`},
const showVideosLink = (
<a href={`/artist/${artist.gid}/recordings?video=1`}>
{l('Show only videos')}
</a>
);

return (
Expand Down

0 comments on commit 5c826bb

Please sign in to comment.