mirror of
https://github.com/documenso/documenso.git
synced 2025-11-14 00:32:43 +10:00
Long filename fix 🗄
This commit is contained in:
@ -71,7 +71,9 @@ export function Dialog({
|
|||||||
</DialogComponent.Title>
|
</DialogComponent.Title>
|
||||||
<div className="mt-2">
|
<div className="mt-2">
|
||||||
<p className="text-sm text-gray-500">
|
<p className="text-sm text-gray-500">
|
||||||
{`"${document.title}" will be sent to ${unsentEmailsLength} recipients.`}
|
{`"${document.title.length > 20 ? document.title.substring(0, 7) + "..." +
|
||||||
|
document.title.substring(document.title.length - 7) : document.title}"
|
||||||
|
will be sent to ${unsentEmailsLength} recipients.`}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user