change remote open show icon

This commit is contained in:
2022-11-10 21:02:36 +01:00
parent e4d6fa6b01
commit 3206d25310

View File

@@ -3,7 +3,7 @@ import {combineLatest} from 'rxjs';
import {PresentationBackground, Show} from '../../shows/services/show'; import {PresentationBackground, Show} from '../../shows/services/show';
import {ShowSongService} from '../../shows/services/show-song.service'; import {ShowSongService} from '../../shows/services/show-song.service';
import {SongService} from '../../songs/services/song.service'; import {SongService} from '../../songs/services/song.service';
import {faDesktop, faRepeat} from '@fortawesome/free-solid-svg-icons'; import {faDesktop, faFolderOpen} from '@fortawesome/free-solid-svg-icons';
import {ShowService} from '../../shows/services/show.service'; import {ShowService} from '../../shows/services/show.service';
import {ShowSong} from '../../shows/services/show-song'; import {ShowSong} from '../../shows/services/show-song';
import {GlobalSettingsService} from '../../../services/global-settings.service'; import {GlobalSettingsService} from '../../../services/global-settings.service';
@@ -32,7 +32,7 @@ export class RemoteComponent {
public songs$ = this.songService.list$(); public songs$ = this.songService.list$();
public presentationSongs: PresentationSong[] = []; public presentationSongs: PresentationSong[] = [];
public progress = false; public progress = false;
public faIcon = faRepeat; public faIcon = faFolderOpen;
public faDesktop = faDesktop; public faDesktop = faDesktop;