mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-12-25 23:13:35 +00:00
Fix error on rendering chapters.
This commit is contained in:
parent
5e47758bb0
commit
f149ac95bb
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<h2 v-t="'video.chapters'" />
|
<h2 v-t="'video.chapters'" />
|
||||||
<div :key="chapter.start" v-for="chapter in props.chapters" @click="$emit('seek', chapter.start)" class="chapter">
|
<div :key="chapter.start" v-for="chapter in chapters" @click="$emit('seek', chapter.start)" class="chapter">
|
||||||
<img :src="chapter.image" :alt="chapter.title" class="h-12" />
|
<img :src="chapter.image" :alt="chapter.title" class="h-12" />
|
||||||
<div class="ml-1">
|
<div class="ml-1">
|
||||||
<span class="text-xl" v-text="chapter.title" />
|
<span class="text-xl" v-text="chapter.title" />
|
||||||
|
Loading…
Reference in New Issue
Block a user