From 023178db2fd3ac05cc50b0efaf43710079229351 Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Thu, 4 Apr 2024 15:53:33 +0200 Subject: [PATCH] Fix saving workflows with freehand_comments only --- lib/galaxy/workflow/steps.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lib/galaxy/workflow/steps.py b/lib/galaxy/workflow/steps.py index f1cb776c9b94..61b11d5295b1 100644 --- a/lib/galaxy/workflow/steps.py +++ b/lib/galaxy/workflow/steps.py @@ -57,11 +57,12 @@ def order_workflow_steps(steps, comments): else: sortable_comments.append(comment) - # consider comments to find normalization position - min_left_comments = min(comment.position[0] for comment in sortable_comments) - min_top_comments = min(comment.position[1] for comment in sortable_comments) - min_left = min(min_left_comments, min_left) - min_top = min(min_top_comments, min_top) + if sortable_comments: + # consider comments to find normalization position + min_left_comments = min(comment.position[0] for comment in sortable_comments) + min_top_comments = min(comment.position[1] for comment in sortable_comments) + min_left = min(min_left_comments, min_left) + min_top = min(min_top_comments, min_top) # normalize comments by min_left and min_top for comment_list in [sortable_comments, freehand_comments]: