Commit 98f22ec9 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: timestamp display

parent d0794788
...@@ -173,7 +173,7 @@ ...@@ -173,7 +173,7 @@
{#if message.timestamp} {#if message.timestamp}
<span class=" invisible group-hover:visible text-gray-400 text-xs font-medium"> <span class=" invisible group-hover:visible text-gray-400 text-xs font-medium">
{dayjs(message.timestamp * 1000).format('DD/MM/YYYY HH:MM')} {dayjs(message.timestamp * 1000).format('DD/MM/YYYY HH:mm')}
</span> </span>
{/if} {/if}
</Name> </Name>
......
...@@ -66,7 +66,7 @@ ...@@ -66,7 +66,7 @@
{#if message.timestamp} {#if message.timestamp}
<span class=" invisible group-hover:visible text-gray-400 text-xs font-medium"> <span class=" invisible group-hover:visible text-gray-400 text-xs font-medium">
{dayjs(message.timestamp * 1000).format('DD/MM/YYYY HH:MM')} {dayjs(message.timestamp * 1000).format('DD/MM/YYYY HH:mm')}
</span> </span>
{/if} {/if}
</Name> </Name>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment