From 819340dd3c34e89e8cd7126c6f1172aba7a8ebec Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 16 Aug 2023 10:22:50 -0700 Subject: Shorten links in composer to reduce char usage (#1188) * Modify toShortUrl() to always include the full domain * Shorten links in the composer to save on characters * Apply some limits to the link card suggester --- src/view/com/composer/text-input/TextInput.web.tsx | 1 + 1 file changed, 1 insertion(+) (limited to 'src/view/com/composer/text-input/TextInput.web.tsx') diff --git a/src/view/com/composer/text-input/TextInput.web.tsx b/src/view/com/composer/text-input/TextInput.web.tsx index 245c17b9c..da34a5b9a 100644 --- a/src/view/com/composer/text-input/TextInput.web.tsx +++ b/src/view/com/composer/text-input/TextInput.web.tsx @@ -107,6 +107,7 @@ export const TextInput = React.forwardRef( const json = editorProp.getJSON() const newRt = new RichText({text: editorJsonToText(json).trim()}) + newRt.detectFacetsWithoutResolution() setRichText(newRt) const newSuggestedLinks = new Set(editorJsonToLinks(json)) -- cgit 1.4.1