You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-07-01 05:35:03 +02:00
fix(web): wrap long word in description (#6351)
This commit is contained in:
@ -198,7 +198,7 @@
|
|||||||
|
|
||||||
<section class="mx-4 mt-10" style:display={!isOwner && description === '' ? 'none' : 'block'}>
|
<section class="mx-4 mt-10" style:display={!isOwner && description === '' ? 'none' : 'block'}>
|
||||||
{#if !isOwner || api.isSharedLink}
|
{#if !isOwner || api.isSharedLink}
|
||||||
<span>{description}</span>
|
<span class="break-words">{description}</span>
|
||||||
{:else}
|
{:else}
|
||||||
<textarea
|
<textarea
|
||||||
bind:this={textarea}
|
bind:this={textarea}
|
||||||
|
Reference in New Issue
Block a user