Skip to content

Commit

Permalink
remove title from play button to prevent it saying "play play"
Browse files Browse the repository at this point in the history
  • Loading branch information
Kilian committed Oct 24, 2023
1 parent 95af9a5 commit c24c497
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<div class="show-actions zone" style="--bg: var(--black); --fg: var(--white);">
<div class="show-actions-flex">
<button on:click={() => player.play_show(show)} data-testid="play-show">
<Icon name="play{$player.current_show?.number === show.number ? 'ing' : ''}" />
<Icon title="" name="play{$player.current_show?.number === show.number ? 'ing' : ''}" />
Play{$player.current_show?.number === show.number ? 'ing' : ''} Episode {show.number}
</button>
<span>or</span>
Expand Down

0 comments on commit c24c497

Please sign in to comment.