diff --git a/src/components/Topbar/TopbarHistoryPop.vue b/src/components/Topbar/TopbarHistoryPop.vue
index f7930f0c..8154364a 100644
--- a/src/components/Topbar/TopbarHistoryPop.vue
+++ b/src/components/Topbar/TopbarHistoryPop.vue
@@ -274,7 +274,9 @@ function scrollToTop(element: HTMLElement, duration: number) {
@@ -288,7 +290,11 @@ function scrollToTop(element: HTMLElement, duration: number) {
>
{{
- `${historyItem.progress === -1 ? calcCurrentTime(historyItem.duration) : calcCurrentTime(historyItem.progress)} /
+ `${
+ historyItem.progress === -1
+ ? calcCurrentTime(historyItem.duration)
+ : calcCurrentTime(historyItem.progress)
+ } /
${calcCurrentTime(historyItem.duration)}`
}}
@@ -306,14 +312,16 @@ function scrollToTop(element: HTMLElement, duration: number) {