mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix import statement in photo player
Co-authored-by: Dmitry Lyzo <56478732+dmitrylyzo@users.noreply.github.com>
This commit is contained in:
parent
70ab8af6e7
commit
c13fc65dd0
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ export class PhotoPlayer {
|
||||||
|
|
||||||
return new Promise(function (resolve, reject) {
|
return new Promise(function (resolve, reject) {
|
||||||
|
|
||||||
import('slideshow').then(slideshow => {
|
import('slideshow').then(({default: slideshow}) => {
|
||||||
|
|
||||||
var index = options.startIndex || 0;
|
var index = options.startIndex || 0;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue