mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-21 09:09:01 +00:00
Fix track name in playlist shade
This commit is contained in:
parent
067fc7d280
commit
792b29d8e2
1 changed files with 3 additions and 3 deletions
|
|
@ -18,7 +18,7 @@ import {
|
|||
import CharacterString from "../CharacterString";
|
||||
import ResizeTarget from "./ResizeTarget";
|
||||
|
||||
import { getOrderedTracks } from "../../selectors";
|
||||
import { getOrderedTracks, getMediaText } from "../../selectors";
|
||||
|
||||
const PlaylistShade = props => {
|
||||
const {
|
||||
|
|
@ -83,7 +83,7 @@ const mapStateToProps = state => {
|
|||
const {
|
||||
windows: { focused },
|
||||
display: { skinPlaylistStyle, playlistSize, playlistShade },
|
||||
media: { length, name }
|
||||
media: { length }
|
||||
} = state;
|
||||
return {
|
||||
focused,
|
||||
|
|
@ -92,7 +92,7 @@ const mapStateToProps = state => {
|
|||
playlistShade,
|
||||
trackOrder: getOrderedTracks(state),
|
||||
length,
|
||||
name
|
||||
name: getMediaText(state)
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue