Poängräkningen fungerar

This commit is contained in:
2025-10-12 09:41:14 +02:00
parent f2403d5cf3
commit ae05adc823
2 changed files with 5 additions and 1 deletions

View File

@ -113,6 +113,10 @@ public class RoundRunningViewModel : ViewModelBase
var localElements = _combined.roundBuilderElementsTotalById(_objectMessage.CurrentGroup.GameRoundId);
FillupResultTable(localElements);
foreach (var col in _playerColumns)
{
RoundElements.FirstOrDefault(e => e.ParticipantId == col.PlayerId).GameRegPoints = col.PlayerPoints;
}
TriggerRebuild();
}
return RoundElements;