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
b0d9aa38
Commit
b0d9aa38
authored
Jun 14, 2024
by
rdavis
Browse files
Swapped from inline style to using tailwind class.
parent
26575c50
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/lib/components/admin/UserChatsModal.svelte
src/lib/components/admin/UserChatsModal.svelte
+3
-3
No files found.
src/lib/components/admin/UserChatsModal.svelte
View file @
b0d9aa38
...
...
@@ -85,7 +85,7 @@
{#if sortKey === 'title'}
{sortOrder === 'asc' ? '▲' : '▼'}
{:else}
<span
style="visibility:hidden
">▲</span>
<span
class="invisible
">▲</span>
{/if}
</th>
<th scope="col" class="px-3 py-2 cursor-pointer select-none" on:click={() => setSortKey('created_at')}>
...
...
@@ -93,7 +93,7 @@
{#if sortKey === 'created_at'}
{sortOrder === 'asc' ? '▲' : '▼'}
{:else}
<span
style="visibility:hidden
">▲</span>
<span
class="invisible
">▲</span>
{/if}
</th>
<th scope="col" class="px-3 py-2 hidden md:flex cursor-pointer select-none" on:click={() => setSortKey('updated_at')}>
...
...
@@ -101,7 +101,7 @@
{#if sortKey === 'updated_at'}
{sortOrder === 'asc' ? '▲' : '▼'}
{:else}
<span
style="visibility:hidden
">▲</span>
<span
class="invisible
">▲</span>
{/if}
</th>
<th scope="col" 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