Zielwert:
{{
diceForm.get('targetValue')?.value | number: '1.0-2'
}}
0
25
50
75
100
{{ potentialWin() | currency: 'EUR' : 'symbol' : '1.2-2' }}
{{ potentialWin() | currency: 'EUR' : 'symbol' : '1.2-2' }}
@if (rolledValue() !== null) {
}
@for (i of [0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100]; track i) {
}
@if (
hasError('targetValue', 'required') ||
hasError('targetValue', 'min') ||
hasError('targetValue', 'max')
) {
@if (hasError('targetValue', 'required')) {
Zielwert ist erforderlich
}
@if (hasError('targetValue', 'min')) {
Zielwert muss mindestens 1 sein
}
@if (hasError('targetValue', 'max')) {
Zielwert darf höchstens 99 sein
}
}