Skip to content

Commit 58c7fc6

Browse files
committed
Fixed alignment issue due to accessibility fix
1 parent 0c295a9 commit 58c7fc6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/community/reactnative/src/utils/markdown-formatter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export default class MarkdownFormatter extends React.PureComponent {
110110
}
111111

112112
return (
113-
<View accessible={true} accessibilityLabel={this.altText || this.text}>
113+
<View accessible={true} accessibilityLabel={this.altText || this.text} style={{alignSelf: 'baseline'}}>
114114
{this.renderText(this.text)}
115115
</View>
116116
);

0 commit comments

Comments
 (0)