fix bundle size
Some checks failed
Angular Build / build (push) Has been cancelled

This commit is contained in:
2026-03-20 19:43:50 +01:00
parent f2986dd420
commit 5efd44e710
14 changed files with 101 additions and 71 deletions

View File

@@ -8,6 +8,7 @@ import {SongTextComponent} from '../../widget-modules/components/song-text/song-
import {ShowTypePipe} from '../../widget-modules/pipes/show-type-translater/show-type.pipe';
import {concat, from, Observable, of} from 'rxjs';
import {GuestShow} from './guest-show';
import {ensureSwiperElement} from '../../services/swiper-element';
@Component({
selector: 'app-guest',
@@ -20,6 +21,10 @@ export class GuestComponent {
private currentRoute = inject(ActivatedRoute);
private service = inject(GuestShowDataService);
public constructor() {
void ensureSwiperElement();
}
public showState$: Observable<GuestShowState> = this.currentRoute.params.pipe(
map(param => param.id as string),
switchMap(id =>