LLMAttachmentButton: reduce ellipses

This commit is contained in:
Enrico Ros
2024-09-26 00:25:05 -07:00
parent a41688f378
commit 96acd7a307
@@ -164,7 +164,7 @@ function attachmentLabelText(attachmentDraft: AttachmentDraft): string {
if (converter.id === 'rich-text')
return 'Rich HTML';
}
return ellipsizeFront(attachmentDraft.label, 24);
return ellipsizeFront(attachmentDraft.label, 22);
}