fix lint files #2

This commit is contained in:
2025-01-05 10:45:23 +01:00
parent 26fd61e90a
commit 2d38af1c27
2 changed files with 4 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
import {Component} from '@angular/core';
import {Component, CUSTOM_ELEMENTS_SCHEMA} from '@angular/core';
import {GuestShowDataService} from './guest-show-data.service';
import {ActivatedRoute} from '@angular/router';
import {map, switchMap} from 'rxjs/operators';
@@ -12,6 +12,7 @@ import {ShowTypePipe} from '../../widget-modules/pipes/show-type-translater/show
selector: 'app-guest',
templateUrl: './guest.component.html',
styleUrls: ['./guest.component.less'],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
imports: [NgIf, NgFor, SongTextComponent, AsyncPipe, DatePipe, ShowTypePipe],
})
export class GuestComponent {