Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
scratch-www
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
scratch-www
Commits
6fd1d08d
Commit
6fd1d08d
authored
Jul 11, 2016
by
Matthew Taylor
Committed by
GitHub
Jul 11, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #720 from mewtaylor/issue/usernames-search
[Develop] GH-710: only show username in search and explore
parents
ff67f7ba
27b5afdd
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
src/components/grid/grid.jsx
src/components/grid/grid.jsx
+1
-1
src/views/explore/explore.jsx
src/views/explore/explore.jsx
+3
-3
src/views/search/search.jsx
src/views/search/search.jsx
+3
-3
No files found.
src/components/grid/grid.jsx
View file @
6fd1d08d
...
...
@@ -40,7 +40,7 @@ var Grid = React.createClass({
href=
{
href
}
title=
{
item
.
title
}
src=
{
item
.
image
}
creator=
{
item
.
creator
}
creator=
{
item
.
author
.
username
}
loves=
{
item
.
stats
.
loves
}
favorites=
{
item
.
stats
.
favorites
}
remixes=
{
item
.
stats
.
remixes
}
...
...
src/views/explore/explore.jsx
View file @
6fd1d08d
...
...
@@ -130,9 +130,9 @@ var Explore = injectIntl(React.createClass({
<
div
id=
'projectBox'
key=
'projectBox'
>
<
Grid
items=
{
this
.
state
.
loaded
}
itemType=
{
this
.
props
.
itemType
}
showLoves=
{
tru
e
}
showFavorites=
{
tru
e
}
showViews=
{
tru
e
}
/>
showLoves=
{
fals
e
}
showFavorites=
{
fals
e
}
showViews=
{
fals
e
}
/>
<
SubNavigation
className=
'load'
>
<
button
onClick=
{
this
.
getExploreMore
}
>
<
li
>
...
...
src/views/search/search.jsx
View file @
6fd1d08d
...
...
@@ -103,9 +103,9 @@ var Search = injectIntl(React.createClass({
<
div
id=
'projectBox'
key=
'projectBox'
>
<
Grid
items=
{
this
.
state
.
loaded
}
itemType=
{
this
.
props
.
tab
}
showLoves=
{
tru
e
}
showFavorites=
{
tru
e
}
showViews=
{
tru
e
}
/>
showLoves=
{
fals
e
}
showFavorites=
{
fals
e
}
showViews=
{
fals
e
}
/>
<
SubNavigation
className=
'load'
>
<
button
onClick=
{
this
.
getSearchMore
}
>
<
li
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment