1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Address more feedback

This commit is contained in:
MrTimscampi 2020-07-25 13:42:03 +02:00
parent 5799a877a9
commit b7d2561dae
12 changed files with 20 additions and 26 deletions

View file

@ -262,7 +262,7 @@ import 'css!./multiSelect';
switch (id) {
case 'addtocollection':
import('collectionEditor').then(({default: collectionEditor}) => {
new collectionEditor.showEditor({
new collectionEditor({
items: items,
serverId: serverId
});
@ -272,7 +272,7 @@ import 'css!./multiSelect';
break;
case 'playlist':
import('playlistEditor').then(({default: playlistEditor}) => {
new playlistEditor.showEditor({
new playlistEditor({
items: items,
serverId: serverId
});