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
ebeaa24e
Commit
ebeaa24e
authored
Apr 27, 2024
by
Timothy J. Baek
Browse files
refac
parent
e2447dd0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
src/routes/(app)/admin/+page.svelte
src/routes/(app)/admin/+page.svelte
+4
-3
No files found.
src/routes/(app)/admin/+page.svelte
View file @
ebeaa24e
...
...
@@ -165,9 +165,10 @@
<th scope="col" class="px-3 py-2"> {$i18n.t('Role')} </th>
<th scope="col" class="px-3 py-2"> {$i18n.t('Name')} </th>
<th scope="col" class="px-3 py-2"> {$i18n.t('Email')} </th>
<th scope="col" class="px-3 py-2"> {$i18n.t('Created at')} </th>
<th scope="col" class="px-3 py-2"> {$i18n.t('Last Active')} </th>
<th scope="col" class="px-3 py-2"> {$i18n.t('Created at')} </th>
<th scope="col" class="px-3 py-2 text-right" />
</tr>
</thead>
...
...
@@ -225,11 +226,11 @@
<td class=" px-3 py-2"> {user.email} </td>
<td class=" px-3 py-2">
{dayjs(user.
created
_at * 1000).f
ormat($i18n.t('MMMM DD, YYYY')
)}
{dayjs(user.
last_active
_at * 1000).f
romNow(
)}
</td>
<td class=" px-3 py-2">
{dayjs(user.
last_active
_at * 1000).f
romNow(
)}
{dayjs(user.
created
_at * 1000).f
ormat($i18n.t('MMMM DD, YYYY')
)}
</td>
<td class="px-3 py-2 text-right">
...
...
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