diff --git a/app/src/components/Layout/PauseButton.tsx b/app/src/components/Layout/PauseButton.tsx index 21de893..b1e0647 100644 --- a/app/src/components/Layout/PauseButton.tsx +++ b/app/src/components/Layout/PauseButton.tsx @@ -59,13 +59,16 @@ class PauseButton extends React.Component { } public render() { - const { actions, classes } = this.props - + const message = this.props.paused ? 'Resumes updating the tree, after applying all recorded changes' : 'Stops all updates, records changes until the buffer is full.' return (
- {this.props.paused ? this.renderResume() : this.renderPause()} + +
+ {this.props.paused ? : } +
+
{this.props.paused ? this.renderBufferStats() : null}