mirror of
https://github.com/timepill/timepill-app.git
synced 2025-04-30 09:59:31 +08:00
日记本默认公开
This commit is contained in:
parent
fc0b405e98
commit
76580c64e3
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ export default class Comment extends Component {
|
||||||
comment.recipient == null
|
comment.recipient == null
|
||||||
? <Text style={localStyle.content}>{comment.content}</Text>
|
? <Text style={localStyle.content}>{comment.content}</Text>
|
||||||
: (
|
: (
|
||||||
<Text style={localStyle.content}>
|
<Text style={localStyle.content} selectable={true} selectionColor={Color.textSelect}>
|
||||||
<Text style={{color: Color.primary}}>@{comment.recipient.name} </Text>
|
<Text style={{color: Color.primary}}>@{comment.recipient.name} </Text>
|
||||||
{comment.content}
|
{comment.content}
|
||||||
</Text>
|
</Text>
|
||||||
|
|
Loading…
Reference in a new issue