Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Mobile
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
180
Merge Requests
13
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Minds
Minds Mobile
Compare Revisions
d3cd97786cd438592e13a796a5f38f82d25977d3...6cb8f8cea397d773eee03ce0d7922d41261fd27f
Source
6cb8f8cea397d773eee03ce0d7922d41261fd27f
...
Target
d3cd97786cd438592e13a796a5f38f82d25977d3
Compare
Commits (1)
(fix) minor code tweak
· 6cb8f8ce
Juan Manuel Solaro
authored
1 hour ago
6cb8f8ce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
src/comments/ReplyAction.js
View file @
6cb8f8ce
...
...
@@ -49,7 +49,16 @@ export default class ReplyAction extends Component {
const
textStyle
=
{
color
};
return
(
<
TouchableOpacityCustom
style
=
{[
CommonStyle
.
flexContainer
,
CommonStyle
.
centered
,
CommonStyle
.
paddingRight2x
,
this
.
props
.
orientation
==
'
column
'
?
CommonStyle
.
columnAlignCenter
:
CommonStyle
.
rowJustifyCenter
]}
onPress
=
{
this
.
toggleExpand
}
testID
=
'
ReplyCommentButton
'
>
<
TouchableOpacityCustom
style
=
{[
CommonStyle
.
flexContainer
,
CommonStyle
.
centered
,
CommonStyle
.
paddingRight2x
,
this
.
props
.
orientation
==
'
column
'
?
CommonStyle
.
columnAlignCenter
:
CommonStyle
.
rowJustifyCenter
]}
onPress
=
{
this
.
toggleExpand
}
testID
=
'
ReplyCommentButton
'
>
<
Icon
color
=
{
color
}
name
=
{
this
.
iconName
}
size
=
{
this
.
props
.
size
}
/
>
<
Text
style
=
{
textStyle
}
>
{
i18n
.
t
(
'
reply
'
)}
<
/Text
>
<
Counter
size
=
{
this
.
props
.
size
*
0.75
}
count
=
{
entity
.
replies_count
}
orientation
=
{
this
.
props
.
orientation
}
/
>
...
...
This diff is collapsed.