Skip to content

Commit 21978da

Browse files
authored
Merge pull request #85 from shwetachari/feat/defaultProfPic
Feat/default prof pic
2 parents d365625 + b71595a commit 21978da

13 files changed

+5
-6
lines changed

client/components/App.jsx

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import Profile from './profile/Profile.jsx';
66
import Courses from './courses/Courses.jsx';
77
import Social from './social/Social.jsx';
88
import $ from 'jquery';
9+
import defaultProfPic from '../images/defaultProfPic.png';
910

1011
class App extends React.Component {
1112
constructor(props) {
@@ -75,9 +76,9 @@ class App extends React.Component {
7576
redirect: true
7677
});
7778
} else {
78-
// if (parsedRes[0].picture === null) {
79-
// parsedRes[0].picture = 'images/defaultProfPic.png';
80-
// }
79+
if (parsedRes[0].picture === null) {
80+
parsedRes[0].picture = defaultProfPic;
81+
}
8182
this.setState({
8283
activeUser: parsedRes[0],
8384
redirect: false

client/components/AppRoutes.jsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ class AppRoutes extends React.Component {
1616
url:'./api/userdata',
1717
type: 'GET',
1818
success: (res) => {
19-
console.log('user data', res);
2019
this.setState({
2120
user: res
2221
});
@@ -31,7 +30,7 @@ class AppRoutes extends React.Component {
3130
return (
3231
<div>
3332
<Nav user={this.state.user}/>
34-
<Routes signedIn={this.state.user}/>
33+
<Routes/>
3534
</div>
3635
)
3736
}

client/components/courses/CourseListItem.jsx

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import React from 'react';
33
class CourseListItem extends React.Component {
44
constructor(props) {
55
super(props);
6-
76
}
87

98
deleteCourse(course) {
12.1 KB
Loading

client/images/nodebook_icon_green.png

14.2 KB
Loading

client/images/nodebook_icon_mono.png

13.8 KB
Loading

client/images/nodebook_icon_white.png

12.1 KB
Loading
3.71 KB
Loading
4.06 KB
Loading

client/images/nodebook_small_mono.png

4.02 KB
Loading
3.71 KB
Loading

client/images/nodebook_tree.png

12.4 KB
Loading

client/images/nodebook_tree_brown.png

12.4 KB
Loading

0 commit comments

Comments
 (0)