Skip to content

Commit

Permalink
Merge pull request #73 from BongoHive/master
Browse files Browse the repository at this point in the history
fixed the sidenav conflict
  • Loading branch information
OlivierJM authored Feb 22, 2019
2 parents 739a3a9 + 280e682 commit 23ed9de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
FROM abernix/spaceglue:node-8-onbuild
2 changes: 1 addition & 1 deletion imports/ui/components/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class Home extends Component {
if (!courses) {
return <span> No Courses </span>;
} else if (courses.length === 0) {
return <p className="center"> There are no Contents yet </p>;
return <p className="center"> There are no contents yet </p>;
}
return courses.map(cours => <Courses key={index++} course={cours} />);
}
Expand Down
2 changes: 1 addition & 1 deletion imports/ui/components/layouts/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export class Header extends Component {
// used var intentionally
var elems = document.querySelector('.sidenav'); // eslint-disable-line
var instances = M.Sidenav.init(elems, { // eslint-disable-line
edge: 'right',
edge: 'left',
});
}

Expand Down

0 comments on commit 23ed9de

Please sign in to comment.