This commit is contained in:
Park Byung Eun 2022-08-31 05:01:26 +00:00
parent 63ee6c23b2
commit 8d0e844c0b

View File

@ -75,7 +75,7 @@
<ng-container matColumnDef="amount">
<th mat-header-cell *matHeaderCellDef>충전금액</th>
<td mat-cell *matCellDef="let info">
{{ info.getAmount() }}
{{ info.getAmount() | currency: "KRW":"symbol" }}
</td>
</ng-container>
@ -83,7 +83,7 @@
<ng-container matColumnDef="createAt">
<th mat-header-cell *matHeaderCellDef>신청일자</th>
<td mat-cell *matCellDef="let info">
{{ info.getCreatedAt() | date: "MMM dd, h:mm a" }}
{{ info.getCreatedAt() | date: "yyyy/MM/dd HH:mm" }}
</td>
</ng-container>