Skip to content

Commit

Permalink
Merge d7ce547 into 4aef88d
Browse files Browse the repository at this point in the history
  • Loading branch information
kurund authored Jan 10, 2022
2 parents 4aef88d + d7ce547 commit 4f3ca4b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { Button } from 'components/UI/Form/Button/Button';
import Loading from 'components/UI/Layout/Loading/Loading';
import { COUNT_CONTACT_HISTORY, GET_CONTACT_HISTORY } from 'graphql/queries/Contact';
import setLogs from 'config/logs';
import { DATE_TIME_FORMAT } from 'common/constants';
import styles from './ContactHistory.module.css';

export interface ContactHistoryProps {
Expand Down Expand Up @@ -113,7 +114,7 @@ export const ContactHistory: React.FC<ContactHistoryProps> = ({ contactId }) =>
return (
<div className={styles.DetailBlock} key={key}>
<div className={styles.LineItem}>{label}</div>
<div className={styles.LineItemDate}>{moment(insertedAt).format('D/MM/YYYY')}</div>
<div className={styles.LineItemDate}>{moment(insertedAt).format(DATE_TIME_FORMAT)}</div>
</div>
);
});
Expand Down

1 comment on commit 4f3ca4b

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.