Skip to content

Commit 0c2e901

Browse files
committed
CustomProfileFields: Use selectable prop for text fields
Fixes: zulip#5592
1 parent a3d73b6 commit 0c2e901

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/account-info/CustomProfileFields.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function CustomProfileFieldRow(props: {|
6363
let valueElement = undefined;
6464
switch (value.displayType) {
6565
case 'text':
66-
valueElement = <ZulipText style={styles.valueText} text={value.text} />;
66+
valueElement = <ZulipText selectable style={styles.valueText} text={value.text} />;
6767
break;
6868

6969
case 'link':

0 commit comments

Comments
 (0)