This commit is contained in:
Rinat Arsaev 2023-06-28 15:03:25 +04:00 committed by GitHub
parent fa49f79051
commit e895141d43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ export class RevertsComponent implements OnInit {
constructor(private fetchRevertsService: FetchRevertsService, private dialog: DialogService) {}
ngOnInit() {
this.fetchRevertsService.search({ depositID: this.deposit.id });
this.fetchRevertsService.search({ deposit_id: this.deposit.id });
}
createRevert() {

View File

@ -1,3 +1,3 @@
export interface FetchRevertsParams {
depositID: string;
deposit_id: string;
}