update npm version

This commit is contained in:
2022-02-13 22:16:50 +01:00
parent a5adbc2fb1
commit d4f8ce1cdd
10 changed files with 57715 additions and 25837 deletions

View File

@@ -13,7 +13,7 @@
</p>
<div *ngIf="showSongs" class="song-list" cdkDropList [cdkDropListDisabled]="show.published"
(cdkDropListDropped)="drop($event, show)">
<div *ngFor="let song of orderedShowSongs(show); let i = index" class="song-row" cdkDrag>
<div *ngFor="let song of orderedShowSongs(show); let i = index; trackBy: trackBy" class="song-row" cdkDrag>
<app-song
[showSong]="song"
[showId]="showId"

View File

@@ -115,4 +115,6 @@ export class ShowComponent implements OnInit {
if (!list) return [];
return show.order.map(_ => list.filter(f => f.id === _)[0]);
}
public trackBy = (index: number, show: ShowSong) => show.id;
}