Skip to content

Commit

Permalink
Update Player.jsx
Browse files Browse the repository at this point in the history
Screwy git situation made me unable to push from local, updating manually on git site. One part of a two file commit that makes it so that you can change streams from the player screen but only on the stream name, not by tapping anywhere on most of the screen
  • Loading branch information
SteveMicroNova committed Aug 30, 2023
1 parent 56036f0 commit 79ef8c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/pages/Player/Player.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ const Player = () => {
onClose={() => setStreamsModalOpen(false)}
/>
)}
<StreamBar sourceId={selectedSourceId} />
<div className="player-inner" onClick={() => {setStreamsModalOpen(true);}}>
<StreamBar sourceId={selectedSourceId} onClick={() => {setStreamsModalOpen(true);}}/>
<div className="player-inner">
<img src={img_url} className="player-album-art" />
<SongInfo
sourceId={selectedSourceId}
Expand Down

0 comments on commit 79ef8c1

Please sign in to comment.