Skip to content
This repository has been archived by the owner on Aug 14, 2023. It is now read-only.

Commit

Permalink
Give chapters a key
Browse files Browse the repository at this point in the history
  • Loading branch information
AlMcKinlay committed Oct 14, 2020
1 parent 4cbc174 commit 72022ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fileEditor/FileView.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function FileView({ file: { path } }) {
<p>Chapters: {tags.chapter?.length || 0}</p>
<ul>
{tags.chapter.map((chapter) => (
<li>
<li key={chapter.tags.title}>
{chapter.tags.title}: {msToTime(chapter.startTimeMs)} - {msToTime(chapter.endTimeMs)}
</li>
))}
Expand Down

0 comments on commit 72022ea

Please sign in to comment.