fix multiple select template

This commit is contained in:
vapormusic 2022-01-28 23:53:25 +07:00
parent 5b6fbd46b5
commit eb82fcc85d
4 changed files with 8 additions and 8 deletions

View file

@ -251,7 +251,7 @@
multiple: {
items: [
{
name: app.getLz('action.playTracksNext'),
name: app.getLz('action.playTracksNext').replace("${app.selectedMediaItems.length}", app.selectedMediaItems.length),
"icon": "./assets/arrow-bend-up.svg",
action: () => {
let itemsToPlay = {}
@ -273,7 +273,7 @@
}
},
{
name: app.getLz('action.playTracksLater'),
name: app.getLz('action.playTracksLater').replace("${app.selectedMediaItems.length}", app.selectedMediaItems.length),
"icon": "./assets/arrow-bend-down.svg",
action: () => {
let itemsToPlay = {}