From a7a85a27f5db5d4423889578645c1bb68441bdae Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Wed, 26 Oct 2022 10:52:54 -0700 Subject: [PATCH] Fix missing placeholders --- src/components/Timeline.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Timeline.vue b/src/components/Timeline.vue index 2e8210e0..eeb943ea 100644 --- a/src/components/Timeline.vue +++ b/src/components/Timeline.vue @@ -386,7 +386,8 @@ export default class Timeline extends Mixins(GlobalMixin, UserConfig) { flag: this.c.FLAG_PLACEHOLDER, fileid: Math.random(), dispW: utils.roundHalf(this.rowWidth / this.numCols), - dispX: utils.roundHalf(j * this.rowWidth / this.numCols) , + dispX: utils.roundHalf(j * this.rowWidth / this.numCols), + dispH: this.rowHeight, dispY: 0, }; }