Skip to content

Commit 07c3434

Browse files
authored
Merge pull request #36773 from mkhutornyi/fix-36349
2 parents 64572e9 + 572a3c9 commit 07c3434

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/HTMLEngineProvider/HTMLRenderers/AnchorRenderer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function AnchorRenderer({tnode, style, key}: AnchorRendererProps) {
6565
// eslint-disable-next-line react/jsx-props-no-multi-spaces
6666
target={htmlAttribs.target || '_blank'}
6767
rel={htmlAttribs.rel || 'noopener noreferrer'}
68-
style={[parentStyle, styles.textUnderlinePositionUnder, styles.textDecorationSkipInkNone, style]}
68+
style={[style, parentStyle, styles.textUnderlinePositionUnder, styles.textDecorationSkipInkNone]}
6969
key={key}
7070
// Only pass the press handler for internal links. For public links or whitelisted internal links fallback to default link handling
7171
onPress={internalNewExpensifyPath || internalExpensifyPath ? () => Link.openLink(attrHref, environmentURL, isAttachment) : undefined}

0 commit comments

Comments
 (0)