bugfixing
This commit is contained in:
@@ -44,7 +44,6 @@ export class AddSongComponent {
|
||||
}
|
||||
|
||||
public async onAddSongSelectionChanged(event: MatSelectChange): Promise<void> {
|
||||
if (!this.showSongs) return;
|
||||
if (!this.show) return;
|
||||
const newId = await this.showSongService.new$(this.show?.id, event.value, this.addedLive);
|
||||
await this.showService.update$(this.show?.id, {order: [...this.show.order, newId ?? '']});
|
||||
|
||||
@@ -25,9 +25,7 @@
|
||||
[class.chord]="line.type === 0"
|
||||
[class.disabled]="checkDisabled(i)"
|
||||
class="line"
|
||||
>
|
||||
{{ line.text }}
|
||||
</div>
|
||||
>{{ line.text }}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -62,9 +60,7 @@
|
||||
[class.chord]="line.type === 0"
|
||||
[class.disabled]="checkDisabled(i)"
|
||||
class="line"
|
||||
>
|
||||
{{ line.text }}
|
||||
</div>
|
||||
>{{ line.text.trim() }}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user