mirror of
https://github.com/immich-app/immich.git
synced 2025-03-01 15:11:21 +01:00
fix(web): update style of rows in user administration table (#3277)
This commit is contained in:
parent
1064128fde
commit
9ef41bf1c7
1 changed files with 5 additions and 5 deletions
|
@ -187,10 +187,10 @@
|
||||||
: 'bg-immich-bg dark:bg-immich-dark-gray/50'
|
: 'bg-immich-bg dark:bg-immich-dark-gray/50'
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
<td class="text-sm px-4 w-1/4 text-ellipsis">{user.email}</td>
|
<td class="text-sm px-4 w-1/4 text-ellipsis break-all">{user.email}</td>
|
||||||
<td class="text-sm px-4 w-1/4 text-ellipsis">{user.firstName}</td>
|
<td class="text-sm px-4 w-1/4 text-ellipsis break-all">{user.firstName}</td>
|
||||||
<td class="text-sm px-4 w-1/4 text-ellipsis">{user.lastName}</td>
|
<td class="text-sm px-4 w-1/4 text-ellipsis break-all">{user.lastName}</td>
|
||||||
<td class="text-sm px-4 w-1/4 text-ellipsis">
|
<td class="text-sm px-4 w-1/4 text-ellipsis break-all">
|
||||||
<div class="container flex flex-wrap mx-auto justify-center">
|
<div class="container flex flex-wrap mx-auto justify-center">
|
||||||
{#if user.externalPath}
|
{#if user.externalPath}
|
||||||
<Check size="16" />
|
<Check size="16" />
|
||||||
|
@ -199,7 +199,7 @@
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td class="text-sm px-4 w-1/4 text-ellipsis">
|
<td class="text-sm px-4 w-1/4 text-ellipsis break-all">
|
||||||
{#if !isDeleted(user)}
|
{#if !isDeleted(user)}
|
||||||
<button
|
<button
|
||||||
on:click={() => editUserHandler(user)}
|
on:click={() => editUserHandler(user)}
|
||||||
|
|
Loading…
Add table
Reference in a new issue