diff --git a/apps/mobile-app/components/items/details/FieldBlock.tsx b/apps/mobile-app/components/items/details/FieldBlock.tsx index acc024b2f..6dace084b 100644 --- a/apps/mobile-app/components/items/details/FieldBlock.tsx +++ b/apps/mobile-app/components/items/details/FieldBlock.tsx @@ -158,7 +158,7 @@ const FieldBlock: React.FC = ({ field, itemId, hideLabel = fals )} - {value} + {value} ); @@ -172,7 +172,7 @@ const FieldBlock: React.FC = ({ field, itemId, hideLabel = fals // Add text before URL if (urlMatch.start > lastEnd) { segments.push( - + {value.substring(lastEnd, urlMatch.start)} ); @@ -185,6 +185,7 @@ const FieldBlock: React.FC = ({ field, itemId, hideLabel = fals key={`url-${idx}`} style={[styles.textAreaText, styles.linkText]} onPress={() => Linking.openURL(href)} + selectable={true} > {urlMatch.url} @@ -196,7 +197,7 @@ const FieldBlock: React.FC = ({ field, itemId, hideLabel = fals // Add remaining text after last URL if (lastEnd < value.length) { segments.push( - + {value.substring(lastEnd)} ); @@ -211,7 +212,7 @@ const FieldBlock: React.FC = ({ field, itemId, hideLabel = fals )} - {segments} + {segments} );