diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-09-11 18:09:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-11 18:09:02 -0700 |
commit | 9b5bd53f84767d53e860454f7946e0bb00e9688c (patch) | |
tree | 10b62365db0a0381f38ce4ac94f5f16c550aa87b | |
parent | 9e8b14f71008e11889bf0107938850433bcd2cd2 (diff) | |
download | voidsky-9b5bd53f84767d53e860454f7946e0bb00e9688c.tar.zst |
Remove accessibilityRole=button on dropdown mask, it causes issues on firefox (#1436)
-rw-r--r-- | src/view/com/util/forms/DropdownButton.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/view/com/util/forms/DropdownButton.tsx b/src/view/com/util/forms/DropdownButton.tsx index d5b254bb9..1bed60b5d 100644 --- a/src/view/com/util/forms/DropdownButton.tsx +++ b/src/view/com/util/forms/DropdownButton.tsx @@ -224,7 +224,6 @@ const DropdownItems = ({ {/* This TouchableWithoutFeedback renders the background so if the user clicks outside, the dropdown closes */} <TouchableWithoutFeedback onPress={onOuterPress} - accessibilityRole="button" accessibilityLabel="Toggle dropdown" accessibilityHint=""> <View style={[styles.bg]} /> |