Skip to content

Commit

Permalink
fix: fix node id when setting fqdn to a node (#644)
Browse files Browse the repository at this point in the history
  • Loading branch information
andre8244 committed Jun 10, 2024
1 parent 4c9ee82 commit d36a1a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/ui/src/components/nodes/SetFqdnModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export default {
);
const res = await to(
this.createNodeTask(1, {
this.createNodeTask(this.node.id, {
action: taskAction,
extra: {
title: this.$t("action." + taskAction),
Expand Down Expand Up @@ -209,7 +209,7 @@ export default {
);
const res = await to(
this.createNodeTask(1, {
this.createNodeTask(this.node.id, {
action: taskAction,
data: {
hostname: this.hostname,
Expand Down

0 comments on commit d36a1a5

Please sign in to comment.