Skip to content

Commit 09dcd55

Browse files
author
Ives van Hoorne
committed
Fix description not updating
1 parent 42a6681 commit 09dcd55

File tree

1 file changed

+3
-0
lines changed
  • src/app/pages/Sandbox/Editor/Workspace/Project

1 file changed

+3
-0
lines changed

src/app/pages/Sandbox/Editor/Workspace/Project/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ export default class Project extends React.PureComponent {
5555
if (nextProps.title !== this.props.title) {
5656
this.setState({ title: nextProps.title });
5757
}
58+
if (nextProps.description !== this.props.description) {
59+
this.setState({ description: nextProps.description });
60+
}
5861
};
5962

6063
render() {

0 commit comments

Comments
 (0)