Skip to content

Commit

Permalink
Merge pull request #153 from lklong709/PIM-66
Browse files Browse the repository at this point in the history
fixes #66 Create Debtor Group - The time is incorrect
  • Loading branch information
lunguyenhat authored Feb 1, 2023
2 parents 8cc20ee + 5938b37 commit 8661595
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class DebtorGroupListViewModel {

transform = (data) => {
return data.map((o) => {
const date = moment(o[PIM_DEBTOR_GROUP_DETAIL_FIELD_KEY.PUBLISHED]).format('DD MMM, YYYY');
const date = moment(o[PIM_DEBTOR_GROUP_DETAIL_FIELD_KEY.MODIFIED_TIME]).format('DD MMM, YYYY');
return {
id: o[PIM_DEBTOR_GROUP_DETAIL_FIELD_KEY.ID],
title: o[PIM_DEBTOR_GROUP_DETAIL_FIELD_KEY.TITLE],
Expand Down

0 comments on commit 8661595

Please sign in to comment.