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
385fcfe8
Commit
385fcfe8
authored
Jun 14, 2024
by
rdavis
Browse files
Swapped from inline style to using tailwind class.
parent
09a6206d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
src/routes/(app)/admin/+page.svelte
src/routes/(app)/admin/+page.svelte
+5
-5
No files found.
src/routes/(app)/admin/+page.svelte
View file @
385fcfe8
...
...
@@ -155,7 +155,7 @@
{#if sortKey === 'role'}
{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('name')}>
...
...
@@ -163,7 +163,7 @@
{#if sortKey === 'name'}
{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('email')}>
...
...
@@ -171,7 +171,7 @@
{#if sortKey === 'email'}
{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('last_active_at')}>
...
...
@@ -179,7 +179,7 @@
{#if sortKey === 'last_active_at'}
{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')}>
...
...
@@ -187,7 +187,7 @@
{#if sortKey === 'created_at'}
{sortOrder === 'asc' ? '▲' : '▼'}
{:else}
<span
style="visibility:hidden
">▲</span>
<span
class="invisible
">▲</span>
{/if}
</th>
...
...
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