Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
98f22ec9
Commit
98f22ec9
authored
Feb 03, 2024
by
Timothy J. Baek
Browse files
fix: timestamp display
parent
d0794788
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/lib/components/chat/Messages/ResponseMessage.svelte
src/lib/components/chat/Messages/ResponseMessage.svelte
+1
-1
src/lib/components/chat/Messages/UserMessage.svelte
src/lib/components/chat/Messages/UserMessage.svelte
+1
-1
No files found.
src/lib/components/chat/Messages/ResponseMessage.svelte
View file @
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>
...
...
src/lib/components/chat/Messages/UserMessage.svelte
View file @
98f22ec9
...
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment