Unverified Commit 3382fd10 authored by Timothy Jaeryang Baek's avatar Timothy Jaeryang Baek Committed by GitHub
Browse files

Merge pull request #636 from ollama-webui/ts-fix

fix: timestamp display
parents d0794788 98f22ec9
......@@ -173,7 +173,7 @@
{#if message.timestamp}
<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>
{/if}
</Name>
......
......@@ -66,7 +66,7 @@
{#if message.timestamp}
<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>
{/if}
</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