Skip to content

Commit 3e8353e

Browse files
fix selection issue with processes
1 parent b2b8cc1 commit 3e8353e

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

nebula/frontend/templates/deployment.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -994,6 +994,15 @@ <h5 class="step-title">Schema of deployment</h5>
994994
</script>
995995
{% endif %}
996996

997+
<script>
998+
var deploymentRadioOptions = document.getElementsByName("deploymentRadioOptions");
999+
for (var i = 0; i < deploymentRadioOptions.length; i++) {
1000+
deploymentRadioOptions[i].addEventListener("change", function () {
1001+
updateGraph();
1002+
});
1003+
}
1004+
</script>
1005+
9971006
<script>
9981007
// Check values of datasetSelect and then show the models available for that dataset in modelSelect
9991008
var datasets = {

0 commit comments

Comments
 (0)