Skip to content

Commit

Permalink
Handle clusters that are not yet bootstrapped when presenting availab…
Browse files Browse the repository at this point in the history
…le nodes (#80)
  • Loading branch information
AlexGodbehere authored Jan 15, 2024
1 parent 81faee8 commit d333bef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/components/Nodes/NewNodeOverlay.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default {
if (val) {
const control = this.steps.nodeSelection.controls.destination_node;
const params = this.steps.__request.parameters;
control.options = Object.entries(val).map(([edgeCluster, config]) => {
control.options = Object.entries(val).filter(([edgeCluster, config]) => config.status).map(([edgeCluster, config]) => {
return {
title: edgeCluster,
value: edgeCluster,
Expand Down

0 comments on commit d333bef

Please sign in to comment.