Skip to content

Commit 3279b4b

Browse files
committed
reverse list
1 parent dfa430c commit 3279b4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/client/src/components/surveys/SurveyList.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class SurveyList extends Component {
88
}
99

1010
renderSurveys() {
11-
return this.props.surveys.map(survey => {
11+
return this.props.surveys.reverse().map(survey => {
1212
return (
1313
<div className="card darken-1" key={survey._id}>
1414
<div className="card-content">

0 commit comments

Comments
 (0)