Skip to content

Commit cf22d65

Browse files
committed
🐛 [fix] 작업 기록 시각 포맷 변경
1 parent 403d787 commit cf22d65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/api-logs/ApiLogsListCard.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import type { ListCardProps } from '@/types/common'
1717
import ListCardTab from '../lists/ListCardTab.vue'
1818
import type { ApiLogsListData } from '@/types/admin'
19-
import { formatDate } from '@/utils/date'
19+
import { formatFullDateTime } from '@/utils/date'
2020
import { API_LOGS_DIVISION_LIST } from '@/constants/admin'
2121
2222
const { info } = defineProps<{ info: ApiLogsListData }>()
@@ -27,7 +27,7 @@ const myRequestTabList: ListCardProps[] = [
2727
isTextXs: true,
2828
isTextBody: true
2929
},
30-
{ content: formatDate(info.requestAt), width: 180, isTextXs: true },
30+
{ content: formatFullDateTime(info.requestAt), width: 180, isTextXs: true },
3131
{ content: info.nickName, width: 80 },
3232
{ content: info.clientIp, width: 120, isTextXs: true },
3333
{ content: String(info.statusCode), width: 40, isTextXs: true, isStatusCode: true },

0 commit comments

Comments
 (0)