From e52b695f7ea4732277292b3422e515fb64e2207f Mon Sep 17 00:00:00 2001 From: advplyr Date: Fri, 21 Jun 2024 16:58:24 -0500 Subject: [PATCH] Update:Change chapters table End column to a Duration column #3093 --- client/components/tables/ChaptersTable.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/components/tables/ChaptersTable.vue b/client/components/tables/ChaptersTable.vue index 3e8aba784e..dff3388909 100644 --- a/client/components/tables/ChaptersTable.vue +++ b/client/components/tables/ChaptersTable.vue @@ -15,7 +15,7 @@ Id {{ $strings.LabelTitle }} {{ $strings.LabelStart }} - {{ $strings.LabelEnd }} + {{ $strings.LabelDuration }} @@ -27,8 +27,8 @@ {{ $secondsToTimestamp(chapter.start) }} - - {{ $secondsToTimestamp(chapter.end) }} + + {{ $secondsToTimestamp(Math.max(0, chapter.end - chapter.start)) }}