mirror of
https://github.com/reanimate/reanimate.git
synced 2026-09-11 16:12:20 +00:00
Improve error display.
Former-commit-id: b211601a4ac7b67fab6b2727a449ad2034edf3f7
This commit is contained in:
parent
4e48ca0833
commit
240a1becf7
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ class App extends Component {
|
|||
this.start = Date.now();
|
||||
} else if( event.data.startsWith("Error") ) {
|
||||
console.log("Error");
|
||||
this.setState({message: event.data });
|
||||
this.setState({message: event.data.substring(5) });
|
||||
} else {
|
||||
this.setState({message: `Rendering: ${this.nFrames_new}`});
|
||||
this.nFrames_new++;
|
||||
|
|
|
|||
Loading…
Reference in a new issue