Skip to content

Commit

Permalink
Merge pull request #363 from stakwork/fix/select-node
Browse files Browse the repository at this point in the history
fix: selected node
  • Loading branch information
tobi-bams authored Oct 22, 2024
2 parents c972617 + a6ddf74 commit 5910544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/super/superapp/src/ViewNodes.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
async function get_current_service_details() {
for (let i = 0; i < $remotes.length; i++) {
const remote = $remotes[i];
if (remote.host === remote.host) {
if (remote.host === $selectedNode) {
node = { ...remote };
try {
const response = await get_swarm_instance_type({
Expand Down

0 comments on commit 5910544

Please sign in to comment.