Removed timezone information from columns. Time will be stored in UTC coordinates.
Moved to Sqlalchemy 1.4 model and SessionFuture. Upgraded to Angular 12 Upgraded the python dependencies
This commit is contained in:
@@ -106,9 +106,11 @@ export class IncentiveComponent implements OnInit {
|
||||
}
|
||||
|
||||
change(row: Incentive, i: number) {
|
||||
row.points = +(((this.form.get('incentives') as FormArray).get(`${i}`) as FormGroup).get(
|
||||
'points',
|
||||
) as FormControl).value;
|
||||
row.points = +(
|
||||
((this.form.get('incentives') as FormArray).get(`${i}`) as FormGroup).get(
|
||||
'points',
|
||||
) as FormControl
|
||||
).value;
|
||||
((this.form.get('incentives') as FormArray).get(`${i}`) as FormGroup).setValue({
|
||||
points: `${row.points}`,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user