Toggle navigation
Toggle navigation
This project
Loading...
Sign in
mobile
/
YH_RNComponent
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
于良
9 years ago
Commit
c9376220986cdfbe9fdb7e9f14e4fabff236835c
2 parents
1c2fa18a
d930b512
Merge branch 'local' into develop
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
js/community/components/subjectPost/SPLikeCell.js
js/community/reducers/app/appActions.js
js/community/components/subjectPost/SPLikeCell.js
View file @
c937622
...
...
@@ -41,7 +41,7 @@ export default class SPLikeCell extends React.Component {
return
(
<
View
style
=
{[
styles
.
avatarPannel
,
{
left
}]}
>
{
users
.
map
((
item
,
i
)
=>
{
let
headStr
=
item
.
headIcon
||
''
;
let
headStr
=
item
&&
item
.
headIcon
?
item
.
headIcon
:
''
;
return
(
<
SlicedImage
key
=
{
i
}
style
=
{[
styles
.
likeAvatar
,
{
right
:
space
*
i
}]}
source
=
{{
uri
:
headStr
}}
/
>
);
...
...
js/community/reducers/app/appActions.js
View file @
c937622
...
...
@@ -11,6 +11,7 @@ import {Actions} from 'react-native-router-flux';
import
Immutable
,
{
Map
}
from
'immutable'
;
import
AppService
from
'../../services/AppService'
;
import
RouterService
from
'../../services/RouterService'
;
import
{
loginThenSyncUserInfo
}
from
'../user/userActions'
;
const
{
SET_PLATFORM
,
...
...
Please
register
or
login
to post a comment