diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-05-06 17:28:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-06 17:28:38 +0100 |
commit | c33c3b7d1e44037d3370da0ac60926293bf8a158 (patch) | |
tree | 08c6c852549dd7a9486ffa12a2d1492314afd452 /src/components/dialogs/MutedWords.tsx | |
parent | ae7626ce6ed08059c161345046b6037313fc2505 (diff) | |
download | voidsky-c33c3b7d1e44037d3370da0ac60926293bf8a158.tar.zst |
Alt text for gifs (#3876)
* add alt text dialog * multiline alt text input * add pressable alt text badge * rename `ALT: ` to `Alt text: ` to avoid including old bad ones * reuse alt text reminder * reuse alt text reminder in gallery * add alt text reminder in the dialog itself * autofocus text input * reorder components to fix tab order * fix close btn position
Diffstat (limited to 'src/components/dialogs/MutedWords.tsx')
-rw-r--r-- | src/components/dialogs/MutedWords.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/dialogs/MutedWords.tsx b/src/components/dialogs/MutedWords.tsx index 0eced11e3..534263422 100644 --- a/src/components/dialogs/MutedWords.tsx +++ b/src/components/dialogs/MutedWords.tsx @@ -37,12 +37,12 @@ export function MutedWordsDialog() { return ( <Dialog.Outer control={control}> <Dialog.Handle /> - <MutedWordsInner control={control} /> + <MutedWordsInner /> </Dialog.Outer> ) } -function MutedWordsInner({}: {control: Dialog.DialogOuterProps['control']}) { +function MutedWordsInner() { const t = useTheme() const {_} = useLingui() const {gtMobile} = useBreakpoints() |