Skip to content

Commit

Permalink
fix(tray): unnecessary hypen
Browse files Browse the repository at this point in the history
  • Loading branch information
haidang666 committed Jun 19, 2021
1 parent 6c2a47a commit e8c307a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/main/src/services/trayMenu/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class TrayMenu {
// Playing status
if (this.playerContext.track) {
template.push({
label: `${this.playerContext.isPlaying ? 'Playing' : ''} - ${this.playerContext.track.name}`,
label: `${this.playerContext.isPlaying ? 'Playing - ' : ''}${this.playerContext.track.name}`,
enabled: false
});
template.push({
Expand Down

0 comments on commit e8c307a

Please sign in to comment.