Skip to content

Commit

Permalink
fix selection issue with processes
Browse files Browse the repository at this point in the history
  • Loading branch information
enriquetomasmb committed Feb 4, 2025
1 parent b2b8cc1 commit 3e8353e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions nebula/frontend/templates/deployment.html
Original file line number Diff line number Diff line change
Expand Up @@ -994,6 +994,15 @@ <h5 class="step-title">Schema of deployment</h5>
</script>
{% endif %}

<script>
var deploymentRadioOptions = document.getElementsByName("deploymentRadioOptions");
for (var i = 0; i < deploymentRadioOptions.length; i++) {
deploymentRadioOptions[i].addEventListener("change", function () {
updateGraph();
});
}
</script>

<script>
// Check values of datasetSelect and then show the models available for that dataset in modelSelect
var datasets = {
Expand Down

0 comments on commit 3e8353e

Please sign in to comment.