Skip to content

Commit 284ef76

Browse files
committed
Merge branch '55-cannot-scroll-progress-region-after-start-a-run' into 'main'
1.5.9 fix action progress can't scroll Closes #55 See merge request heingroup/ivoryos!88
2 parents 4b1590a + 1f7497f commit 284ef76

3 files changed

Lines changed: 23 additions & 17 deletions

File tree

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
1.5.9 (Jan 26th, 2026)
2+
- !88 [Bug] cannot scroll progress region after start a run
3+
- !87 [Bug] step retry not working in workflow execution
4+
- !86 [Bug] page load error after proxy download + enum import in proxy
5+
- !85 [QoL] dropdown menu showing existing variable names in workflow
6+
17
1.5.8 (Jan 20th, 2026)
28
(workflow + batch fix)
39
- !83 [Bug] remove type conversion for str type in Union[]
Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{# Progress panel component for experiment run #}
2-
<div class="col-lg-6 col-sm-12" id="code-panel">
3-
<p>
2+
<div class="col-lg-6 col-sm-12 h-100 d-flex flex-column" id="code-panel">
43
<h5>Progress:</h5>
5-
{% from 'components/render_node_macro.html' import render_nodes %}
4+
<div class="div" style="overflow-y: auto; flex-grow: 1;">
5+
{% from 'components/render_node_macro.html' import render_nodes %}
66

7-
{% if "prep" in line_collection.keys() and line_collection["prep"] %}
8-
<h6>Preparation:</h6>
9-
{{ render_nodes(line_collection["prep"]) }}
10-
{% endif %}
7+
{% if "prep" in line_collection.keys() and line_collection["prep"] %}
8+
<h6>Preparation:</h6>
9+
{{ render_nodes(line_collection["prep"]) }}
10+
{% endif %}
1111

12-
{% if "script" in line_collection.keys() and line_collection["script"] %}
13-
<h6>Experiment:</h6>
14-
{{ render_nodes(line_collection["script"]) }}
15-
{% endif %}
12+
{% if "script" in line_collection.keys() and line_collection["script"] %}
13+
<h6>Experiment:</h6>
14+
{{ render_nodes(line_collection["script"]) }}
15+
{% endif %}
1616

17-
{% if "cleanup" in line_collection.keys() and line_collection["cleanup"] %}
18-
<h6>Cleanup:</h6>
19-
{{ render_nodes(line_collection["cleanup"]) }}
20-
{% endif %}
21-
</p>
17+
{% if "cleanup" in line_collection.keys() and line_collection["cleanup"] %}
18+
<h6>Cleanup:</h6>
19+
{{ render_nodes(line_collection["cleanup"]) }}
20+
{% endif %}
21+
</div>
2222
</div>

ivoryos/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.5.8"
1+
__version__ = "1.5.9"

0 commit comments

Comments
 (0)