mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
Mobile: Accessibility: Mark note properties buttons as buttons (#11432)
This commit is contained in:
parent
1dd02f1746
commit
380ba28bac
@ -91,7 +91,11 @@ const SideMenuContentNoteComponent: React.FC<Props> = props => {
|
||||
if (!onPressHandler) return content;
|
||||
|
||||
return (
|
||||
<TouchableOpacity key={key} onPress={onPressHandler}>
|
||||
<TouchableOpacity
|
||||
key={key}
|
||||
onPress={onPressHandler}
|
||||
accessibilityRole='button'
|
||||
>
|
||||
{content}
|
||||
</TouchableOpacity>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user