store flags for songs

This commit is contained in:
2020-04-22 14:40:42 +02:00
committed by smuddy
parent 90ab0a76ae
commit 1231b69ff0
15 changed files with 91 additions and 16 deletions

View File

@@ -11,6 +11,7 @@ import {ShowSong} from '../../shows/services/show-song';
import {GlobalSettingsService} from '../../../services/global-settings.service';
import {FormControl} from '@angular/forms';
import {distinctUntilChanged, map} from 'rxjs/operators';
import {fade} from '../../../animations';
export interface PresentationSong {
id: string;
@@ -21,7 +22,8 @@ export interface PresentationSong {
@Component({
selector: 'app-remote',
templateUrl: './remote.component.html',
styleUrls: ['./remote.component.less']
styleUrls: ['./remote.component.less'],
animations: [fade]
})
export class RemoteComponent {
public shows$: Observable<Show[]>;