fix(ui): player and signup page (#1415)
* fix(ui): dom parsing with inactivity timestamps * change(ui): text casing
This commit is contained in:
parent
0b95d26b40
commit
e08408ecfa
2 changed files with 5 additions and 2 deletions
|
|
@ -3,7 +3,7 @@ import React from 'react';
|
|||
function Copyright() {
|
||||
return (
|
||||
<div className="fixed bottom-0 m-auto text-center mb-6 color-gray-medium">
|
||||
© 2023 OpenReplay. All rights reserved. <a className="underline" href="https://openreplay.com/privacy.html" target="_blank">Privacy</a> and <a className="underline" href="https://openreplay.com/terms.html" target="_blank">terms</a>.
|
||||
© 2023 OpenReplay. All rights reserved. <a className="underline" href="https://openreplay.com/privacy.html" target="_blank">Privacy</a> and <a className="underline" href="https://openreplay.com/terms.html" target="_blank">Terms</a>.
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -93,7 +93,10 @@ export default class MFileReader extends RawMessageReader {
|
|||
this.startTime = rMsg.timestamp
|
||||
}
|
||||
this.currentTime = rMsg.timestamp - this.startTime
|
||||
return this.readNext()
|
||||
return {
|
||||
tp: 9999,
|
||||
time: this.currentTime,
|
||||
}
|
||||
}
|
||||
|
||||
const index = this.noIndexes ? 0 : this.getLastMessageID()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue