diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-05-06 22:14:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-06 22:14:00 +0100 |
commit | 136b0e12abe4c4c00c15374c018dee36c522ec38 (patch) | |
tree | dbf4de0722c09bff75d8a4c31097ab80c4e71659 /src/view/com/util/post-embeds/GifEmbed.tsx | |
parent | fdb5ffff53dfa1584f834b14e88cb03a4a615fb0 (diff) | |
download | voidsky-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.tsx | 2 |
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} |