Fixes a path issue in the projector
Removes an unnecessary / in the mediafile-slide that prevented files from being resolved correctly in some configurations
This commit is contained in:
parent
43c7797226
commit
e4e239ea29
@ -12,7 +12,7 @@ import { MediafileSlideData } from './mediafile-slide-data';
|
||||
})
|
||||
export class MediafileSlideComponent extends BaseSlideComponent<MediafileSlideData, MediafileProjectorElement> {
|
||||
public get url(): string {
|
||||
return `${this.data.data.media_url_prefix}/${this.data.data.path}`;
|
||||
return `${this.data.data.media_url_prefix}${this.data.data.path}`;
|
||||
}
|
||||
|
||||
public get zoom(): number {
|
||||
|
Loading…
Reference in New Issue
Block a user