We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11511a8 commit 3502844Copy full SHA for 3502844
client/modules/IDE/pages/FullView.jsx
@@ -10,7 +10,7 @@ import * as ProjectActions from '../actions/project';
10
11
class FullView extends React.Component {
12
componentDidMount() {
13
- this.props.getProject(this.props.params.project_id);
+ this.props.getProject(this.props.params.project_id, this.props.params.username);
14
}
15
16
ident = () => {}
@@ -56,7 +56,8 @@ class FullView extends React.Component {
56
57
FullView.propTypes = {
58
params: PropTypes.shape({
59
- project_id: PropTypes.string
+ project_id: PropTypes.string,
60
+ username: PropTypes.string
61
}).isRequired,
62
project: PropTypes.shape({
63
name: PropTypes.string,
0 commit comments