Skip to content

Commit 8df94e5

Browse files
committed
Display seconds in message timestamps.
1 parent 7a0a9ab commit 8df94e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ts/components/conversation/MessageClock.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ export const MessageClock = (props: Props): JSX.Element => {
1414
paddingBottom: '2px',
1515
fontSize: '0.8em',
1616
float: 'right' }}>
17-
{moment(time).format('LT')}
17+
{moment(time).format('LTS')}
1818
</div>;
1919
};

0 commit comments

Comments
 (0)