diff --git a/src/app/modules/admin/game/casino/components/list.component.html b/src/app/modules/admin/game/casino/components/list.component.html
index 2baf968..2643571 100644
--- a/src/app/modules/admin/game/casino/components/list.component.html
+++ b/src/app/modules/admin/game/casino/components/list.component.html
@@ -180,9 +180,9 @@
게임ID: {{ info.getSiteUsername() }}
- 사이트ID{{ info.getSiteUsername() }}
+ 사이트ID: {{ info.getSiteUsername() }}
- 닉네임{{ info.getMember()?.getNickname() }}
+ 닉네임: {{ info.getMember()?.getNickname() }}
{{ info.getVendorName() }}
@@ -195,18 +195,32 @@
{{ info.getBettingType() }}
- 배팅: {{ info.getCash() }}
+ 배팅: {{ info.getCash() | currency: "KRW":"symbol" }}
- 당첨: {{ info.getAfterCash() - info.getBeforeCash() }}
+ 당첨:
+ {{
+ info.getAfterCash() - info.getBeforeCash()
+ | currency: "KRW":"symbol"
+ }}
- 손익: {{ info.getAfterCash() - info.getBeforeCash() }}
+ 손익:
+ {{
+ info.getAfterCash() - info.getBeforeCash()
+ | currency: "KRW":"symbol"
+ }}
- 배팅전: {{ info.getBeforeCash() }}
+ 배팅전:
+ {{ info.getBeforeCash() | currency: "KRW":"symbol" }}
- 배팅후: {{ info.getAfterCash() - info.getBeforeCash() }}
+ 배팅후:
+ {{
+ info.getAfterCash() - info.getBeforeCash()
+ | currency: "KRW":"symbol"
+ }}
- 최종금액: {{ info.getAfterCash() }}
+ 최종금액:
+ {{ info.getAfterCash() | currency: "KRW":"symbol" }}