error on move fix

This commit is contained in:
Łukasz Góreczny 2021-01-20 17:48:45 +01:00
parent 226dd666f5
commit b2436c7dc9

View File

@ -25,7 +25,11 @@ export class GameMasterTurntrackerComponent implements OnInit, OnDestroy {
monsterId: number;
}[] = [];
characterList: { name: string; characterId: number }[] = [];
characterList: {
name: string;
characterId: number;
monsterId: number;
}[] = [];
drop(event: CdkDragDrop<any[]>) {
if (event.previousContainer === event.container) {
@ -52,7 +56,9 @@ export class GameMasterTurntrackerComponent implements OnInit, OnDestroy {
.select((s) => s.gameMasterStore.turnTrackerList)
.pipe(first())
.subscribe((result) => {
this.turnTrackerList = result;
if (result.length > 0) {
this.turnTrackerList = result;
}
this.GetLoggedCharacters();
});
}
@ -72,6 +78,7 @@ export class GameMasterTurntrackerComponent implements OnInit, OnDestroy {
.map((e) => ({
name: e.name,
characterId: e.id,
monsterId: null,
}));
});
}