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
3382fd10
"...resnet50_tensorflow.git" did not exist on "d8f05122d36823b3a653c967fdef82a9b1f62535"
Unverified
Commit
3382fd10
authored
Feb 03, 2024
by
Timothy Jaeryang Baek
Committed by
GitHub
Feb 03, 2024
Browse files
Merge pull request #636 from ollama-webui/ts-fix
fix: timestamp display
parents
d0794788
98f22ec9
Changes
2
Show 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 @
3382fd10
...
@@ -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>
...
...
src/lib/components/chat/Messages/UserMessage.svelte
View file @
3382fd10
...
@@ -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>
...
...
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