fix(ui): player and signup page (#1415)

* fix(ui): dom parsing with inactivity timestamps

* change(ui): text casing
This commit is contained in:
Shekar Siri 2023-07-13 17:01:10 +02:00 committed by GitHub
parent 0b95d26b40
commit e08408ecfa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View file

@ -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>
);
}

View file

@ -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()