Skip to content

Commit 3502844

Browse files
authored
Fix issue with fullscreen not appearing (#1451)
1 parent 11511a8 commit 3502844

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

client/modules/IDE/pages/FullView.jsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import * as ProjectActions from '../actions/project';
1010

1111
class FullView extends React.Component {
1212
componentDidMount() {
13-
this.props.getProject(this.props.params.project_id);
13+
this.props.getProject(this.props.params.project_id, this.props.params.username);
1414
}
1515

1616
ident = () => {}
@@ -56,7 +56,8 @@ class FullView extends React.Component {
5656

5757
FullView.propTypes = {
5858
params: PropTypes.shape({
59-
project_id: PropTypes.string
59+
project_id: PropTypes.string,
60+
username: PropTypes.string
6061
}).isRequired,
6162
project: PropTypes.shape({
6263
name: PropTypes.string,

0 commit comments

Comments
 (0)