-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TD-869: New deposit details page. New create revert dialog (#334)
- Loading branch information
Showing
29 changed files
with
485 additions
and
339 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 12 additions & 5 deletions
17
src/app/sections/deposit-details/deposit-details.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
<cc-page-layout title="Deposit details"> | ||
<cc-deposit-main-info | ||
*ngIf="deposit$ | async as deposit" | ||
[deposit]="deposit" | ||
></cc-deposit-main-info> | ||
<cc-page-layout [progress]="isLoading$ | async" title="Deposit details"> | ||
<mat-card *ngIf="deposit$ | async"> | ||
<mat-card-content> | ||
<cc-thrift-viewer | ||
[extensions]="extensions$ | async" | ||
[metadata]="metadata$ | async" | ||
[value]="deposit$ | async" | ||
namespace="fistful_stat" | ||
type="StatDeposit" | ||
></cc-thrift-viewer> | ||
</mat-card-content> | ||
</mat-card> | ||
<cc-reverts *ngIf="deposit$ | async as deposit" [deposit]="deposit"></cc-reverts> | ||
</cc-page-layout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 0 additions & 26 deletions
26
src/app/sections/deposit-details/deposit-main-info/deposit-main-info.component.html
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
src/app/sections/deposit-details/deposit-main-info/deposit-main-info.component.ts
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
src/app/sections/deposit-details/deposit-main-info/deposit-main-info.module.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.