Skip to content

Commit

Permalink
patch
Browse files Browse the repository at this point in the history
  • Loading branch information
lbr38 committed Dec 29, 2024
1 parent 51a33fc commit 1579e34
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion www/public/resources/js/functions/task.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ function refreshStepsInDOM(steps)
if (visibility) { \
$('.task-step-content[task-id=" + taskId + "][step=" + stepIdentifier + "]').css('display', 'grid'); \
} \
$('.task-step-content[task-id=" + taskId + "][step=" + stepIdentifier + "]').scrollTop($('.task-step-content[task-id=" + taskId + "][step=" + stepIdentifier + "]')[0].scrollHeight); \
if ($('.task-step-content[task-id=" + taskId + "][step=" + stepIdentifier + "]').length > 0) { \
$('.task-step-content[task-id=" + taskId + "][step=" + stepIdentifier + "]').scrollTop($('.task-step-content[task-id=" + taskId + "][step=" + stepIdentifier + "]')[0].scrollHeight); \
} \
}"
]
);
Expand Down

0 comments on commit 1579e34

Please sign in to comment.