Skip to content

Commit

Permalink
feat: User 엔터티 변경사항 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
jellyyelly committed Oct 24, 2024
1 parent fcde918 commit ee2a2fb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/components/UserItem.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@
<div class="content-md">
{user.createdAt === undefined ? '???' : user.createdAt}
</div>
<div class="content-sm">
{user.dormant === undefined ? '???' : user.dormant}
</div>
<div class="content-md">
{user.dormantAt === undefined ? '???' : user.dormantAt}
</div>
<div class="flex gap-3 justify-center items-center content-sm text-nowrap">
{remaining === null ? '? 개' : `${remaining}개`}
<button class="btn-retrieve" on:click={() => retrieveRemaining(user.userId)}>
Expand Down
6 changes: 6 additions & 0 deletions src/components/UserTableHeader.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@
<div class="content-md">
가입일
</div>
<div class="content-sm">
휴면 여부
</div>
<div class="content-md">
휴면일
</div>
<div class="content-sm">
남은 토큰 개수
</div>
Expand Down

0 comments on commit ee2a2fb

Please sign in to comment.