mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-25 09:15:56 +00:00
fix: word wrap on custom link preview (#23942)
Word break fix in create link Adds the "break-all" tailwind style to the slug text under the custom link text box
This commit is contained in:
parent
1086f22166
commit
af22f9b014
1 changed files with 1 additions and 1 deletions
|
|
@ -68,7 +68,7 @@
|
|||
<Input bind:value={slug} autocomplete="off" />
|
||||
</Field>
|
||||
{#if slug}
|
||||
<Text size="tiny" color="muted" class="pt-2">/s/{encodeURIComponent(slug)}</Text>
|
||||
<Text size="tiny" color="muted" class="pt-2 break-all">/s/{encodeURIComponent(slug)}</Text>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue