From af912db7aa1406ea81287840f069c28965de3300 Mon Sep 17 00:00:00 2001 From: David Tsay Date: Thu, 27 Feb 2025 10:01:53 -0800 Subject: [PATCH] working prototype for custom resizing swimlane height --- src/plugins/timeline/TimelineObjectView.vue | 2 +- src/plugins/timeline/TimelineViewLayout.vue | 14 ++++++-------- src/utils/vue/useFlexContainers.js | 3 ++- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/src/plugins/timeline/TimelineObjectView.vue b/src/plugins/timeline/TimelineObjectView.vue index c571e95396..c964d91f1a 100644 --- a/src/plugins/timeline/TimelineObjectView.vue +++ b/src/plugins/timeline/TimelineObjectView.vue @@ -82,7 +82,7 @@ export default { }, computed: { sizeString() { - return `${this.size}px`; + return `${this.size}%`; } }, watch: { diff --git a/src/plugins/timeline/TimelineViewLayout.vue b/src/plugins/timeline/TimelineViewLayout.vue index 7da2fc9913..c1f3157187 100644 --- a/src/plugins/timeline/TimelineViewLayout.vue +++ b/src/plugins/timeline/TimelineViewLayout.vue @@ -72,10 +72,9 @@