about summary refs log tree commit diff
path: root/src/view/com/util/post-embeds/GifEmbed.tsx
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2024-05-06 22:14:00 +0100
committerGitHub <noreply@github.com>2024-05-06 22:14:00 +0100
commit136b0e12abe4c4c00c15374c018dee36c522ec38 (patch)
treedbf4de0722c09bff75d8a4c31097ab80c4e71659 /src/view/com/util/post-embeds/GifEmbed.tsx
parentfdb5ffff53dfa1584f834b14e88cb03a4a615fb0 (diff)
downloadvoidsky-136b0e12abe4c4c00c15374c018dee36c522ec38.tar.zst
make gif alt text prompt selectable (#3879)
Diffstat (limited to 'src/view/com/util/post-embeds/GifEmbed.tsx')
-rw-r--r--src/view/com/util/post-embeds/GifEmbed.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/util/post-embeds/GifEmbed.tsx b/src/view/com/util/post-embeds/GifEmbed.tsx
index dde6efe34..286b57992 100644
--- a/src/view/com/util/post-embeds/GifEmbed.tsx
+++ b/src/view/com/util/post-embeds/GifEmbed.tsx
@@ -174,7 +174,7 @@ function AltText({text}: {text: string}) {
         <Prompt.TitleText>
           <Trans>Alt Text</Trans>
         </Prompt.TitleText>
-        <Prompt.DescriptionText>{text}</Prompt.DescriptionText>
+        <Prompt.DescriptionText selectable>{text}</Prompt.DescriptionText>
         <Prompt.Actions>
           <Prompt.Action
             onPress={control.close}