Skip to content

Commit

Permalink
remove icon mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
engelgabriel committed Jul 24, 2018
1 parent 12519df commit fb6788b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/tray.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ function getTrayImagePath (badge) {
if (badge.title > 9) {
iconFilename = "icon-tray-9plus.png";
} else {
iconFilename = "icon-tray-1.png" + badge.count;
iconFilename = `icon-tray-${badge.count}.png`;
}
} else if (badge.showAlert) {
iconFilename = "icon-tray-alert.png";
Expand Down

0 comments on commit fb6788b

Please sign in to comment.