Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

Commit

Permalink
Support activity review
Browse files Browse the repository at this point in the history
  • Loading branch information
kikakkz committed Dec 7, 2023
1 parent a36756e commit 7dedb85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webui/src/components/ActivityPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ const columns = computed(() => [
}, {
name: 'RegisterStartAt',
label: 'Register Start At',
field: (row: Activity) => date.formatDate(row.registerStartAt)
field: (row: Activity) => date.formatDate(row.registerStartAt, 'YYYY/MM/DD HH:mm')
}, {
name: 'VoteStartAt',
label: 'Vote Start At',
field: (row: Activity) => date.formatDate(row.voteStartAt)
field: (row: Activity) => date.formatDate(row.voteStartAt, 'YYYY/MM/DD HH:mm')
}, {
name: 'ReviewState',
label: 'Review State',
Expand Down

0 comments on commit 7dedb85

Please sign in to comment.