diff --git a/src/app/modules/presentation/monitor/monitor.component.ts b/src/app/modules/presentation/monitor/monitor.component.ts
index 5764873..74b728e 100644
--- a/src/app/modules/presentation/monitor/monitor.component.ts
+++ b/src/app/modules/presentation/monitor/monitor.component.ts
@@ -55,7 +55,10 @@ export class MonitorComponent implements OnInit {
map(_ => _ as Show),
tap
(_ => (this.showType = _.showType)),
tap(_ => (this.date = _.date.toDate())),
- tap(_ => (this.songId = _.presentationSongId)),
+ tap(_ => {
+ if (this.songId !== _.presentationSongId) this.songId = 'empty';
+ setTimeout(() => (this.songId = _.presentationSongId), 300);
+ }),
tap(_ => (this.index = _.presentationSection)),
tap(_ => (this.zoom = _.presentationZoom ?? 30))
)
diff --git a/src/app/modules/presentation/remote/remote.component.less b/src/app/modules/presentation/remote/remote.component.less
index ba091b6..912ff3e 100644
--- a/src/app/modules/presentation/remote/remote.component.less
+++ b/src/app/modules/presentation/remote/remote.component.less
@@ -66,7 +66,7 @@
.div-bottom {
display: grid;
- grid-template-columns: 40px auto;
+ grid-template-columns: 60px auto;
}
.padding-bottom {
diff --git a/src/app/widget-modules/components/song-text/song-text.component.html b/src/app/widget-modules/components/song-text/song-text.component.html
index ab2e228..105e1db 100644
--- a/src/app/widget-modules/components/song-text/song-text.component.html
+++ b/src/app/widget-modules/components/song-text/song-text.component.html
@@ -49,6 +49,7 @@