mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-05-23 07:16:36 +01:00
fix(chapters): sort chapter list entries, localize strings, fix tick keys
This commit is contained in:
@@ -30,9 +30,9 @@ export function ChapterTicks({
|
||||
pointerEvents='none'
|
||||
style={{ position: "absolute", left: 0, right: 0, top: 0, bottom: 0 }}
|
||||
>
|
||||
{markers.map((marker) => (
|
||||
{markers.map((marker, index) => (
|
||||
<View
|
||||
key={marker.positionMs}
|
||||
key={`${marker.positionMs}-${index}`}
|
||||
style={{
|
||||
position: "absolute",
|
||||
left: `${marker.percent}%`,
|
||||
|
||||
Reference in New Issue
Block a user