ui: fix audioplayer start point
This commit is contained in:
parent
6457e383bb
commit
c59114188c
1 changed files with 1 additions and 1 deletions
|
|
@ -41,7 +41,7 @@ function DropdownAudioPlayer({
|
||||||
return {
|
return {
|
||||||
url: data.url,
|
url: data.url,
|
||||||
timestamp: data.timestamp,
|
timestamp: data.timestamp,
|
||||||
start: startTs,
|
start: Math.max(0, startTs),
|
||||||
};
|
};
|
||||||
}),
|
}),
|
||||||
[audioEvents.length, sessionStart]
|
[audioEvents.length, sessionStart]
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue