diff --git a/src/recordings.jsx b/src/recordings.jsx
index 1a8ca33..2bbb79a 100644
--- a/src/recordings.jsx
+++ b/src/recordings.jsx
@@ -400,6 +400,20 @@ class Recording extends React.Component {
constructor(props) {
super(props);
this.goBackToList = this.goBackToList.bind(this);
+ this.handleTsChange = this.handleTsChange.bind(this);
+ this.handleLogTsChange = this.handleLogTsChange.bind(this);
+ this.state = {
+ curTs: null,
+ logsTs: null,
+ };
+ }
+
+ handleTsChange(ts) {
+ this.setState({curTs: ts});
+ }
+
+ handleLogTsChange(ts) {
+ this.setState({logsTs: ts});
}
goBackToList() {
@@ -422,23 +436,33 @@ class Recording extends React.Component {
(