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:
@ -74,9 +74,9 @@ export class IssueComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||
narration: '',
|
||||
});
|
||||
// Listen to Batch Autocomplete Change
|
||||
this.batches = ((this.form.get('addRow') as FormControl).get(
|
||||
'batch',
|
||||
) as FormControl).valueChanges.pipe(
|
||||
this.batches = (
|
||||
(this.form.get('addRow') as FormControl).get('batch') as FormControl
|
||||
).valueChanges.pipe(
|
||||
startWith('null'),
|
||||
debounceTime(150),
|
||||
distinctUntilChanged(),
|
||||
|
||||
Reference in New Issue
Block a user