From 981cf5c9984f22815ecb631bef73f8cc3c031fe3 Mon Sep 17 00:00:00 2001 From: Evgeniy Gavrilov Date: Fri, 2 Apr 2021 08:59:00 +0300 Subject: [PATCH] fix navigation on 2nd+ clicks in the workflow graph --- client/routes/workflow/history.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/routes/workflow/history.vue b/client/routes/workflow/history.vue index b060ed19..6eb0b6ef 100644 --- a/client/routes/workflow/history.vue +++ b/client/routes/workflow/history.vue @@ -537,6 +537,9 @@ export default { setTimeout(() => this.scrollEventIntoView(this.eventId), 100); } }, + eventId(eventId) { + this.scrollEventIntoView(eventId); + }, showGraph() { this.splitSizeSet = this.showGraph ? [20, 80] : [1, 99]; this.onSplitResize();