diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2020-04-28 23:02:23 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2020-04-28 23:02:23 -0400 |
| commit | c0ec0efe6fb03096c9abbee9e5d72e8cab54bf6b (patch) | |
| tree | 79fc55f099773c6329e83bcda2491de7300fb9fb /src/client/views/animationtimeline/Timeline.tsx | |
| parent | ab4297e59e142f70b420831a73c3f3e4506eee15 (diff) | |
from last
Diffstat (limited to 'src/client/views/animationtimeline/Timeline.tsx')
| -rw-r--r-- | src/client/views/animationtimeline/Timeline.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/client/views/animationtimeline/Timeline.tsx b/src/client/views/animationtimeline/Timeline.tsx index 234d560f1..295c1e18c 100644 --- a/src/client/views/animationtimeline/Timeline.tsx +++ b/src/client/views/animationtimeline/Timeline.tsx @@ -467,9 +467,7 @@ export class Timeline extends React.Component<FieldViewProps> { timeIndicator(lengthString: string, totalTime: number) { if (this.props.Document.isATOn) { return ( - <> - <div key="time-text" className="animation-text" style={{ visibility: this.props.Document.isATOn ? "visible" : "hidden", display: this.props.Document.isATOn ? "flex" : "none" }}>{`Total: ${this.toReadTime(totalTime)}`}</div> - </> + <div key="time-text" className="animation-text" style={{ visibility: this.props.Document.isATOn ? "visible" : "hidden", display: this.props.Document.isATOn ? "flex" : "none" }}>{`Total: ${this.toReadTime(totalTime)}`}</div> ); } else { |
