bug fixes and cosmetic improvements

This commit is contained in:
Matt Hill
2021-09-01 14:45:16 -06:00
committed by Aiden McClelland
parent aef1569e56
commit be5952cb67
21 changed files with 147 additions and 118 deletions

View File

@@ -20,10 +20,10 @@ export class CompleteComponent implements OnInit, Loadable {
}
@Input() transitions: {
cancel: () => void
next: () => void
final: () => void
error: (e: Error) => void
cancel: () => any
next: () => any
final: () => any
error: (e: Error) => any
}
loading$ = new BehaviorSubject(false)