diff --git a/plugins/plugins/core/node-management/node-management.src.js b/plugins/plugins/core/node-management/node-management.src.js
index ca128f4c..3716c024 100644
--- a/plugins/plugins/core/node-management/node-management.src.js
+++ b/plugins/plugins/core/node-management/node-management.src.js
@@ -154,9 +154,7 @@ class NodeManagement extends LitElement {
${translate("nodepage.nchange1")} ${this.nodeDomain}
-
this.openBootstrapDialog()}>restart_alt ${translate("tour.tour18")}
-
this.restartNode()}>360 ${translate("nodepage.nchange33")}
- ${this.renderStartStopButton()}
+ ${this.renderButtons()}
${translate("nodepage.nchange2")} ${this.upTime}
@@ -417,14 +415,18 @@ class NodeManagement extends LitElement {
})
}
- renderStartStopButton() {
+ renderButtons() {
if (!isElectron()) {
- return html` this.stopNode()}>dangerous ${translate("nodepage.nchange31")}`
+ return html` this.stopNode()}>dangerous ${translate("nodepage.nchange31")}
+ this.openBootstrapDialog()}>restart_alt ${translate("tour.tour18")}
+ this.restartNode()}>360 ${translate("nodepage.nchange33")}`
} else {
if (this.upTime === "offline") {
return html` this.startNode()}>play_circle ${translate("nodepage.nchange35")}`
} else {
- return html` this.stopNode()}>stop_circle ${translate("nodepage.nchange31")}`
+ return html` this.stopNode()}>stop_circle ${translate("nodepage.nchange31")}
+ this.openBootstrapDialog()}>restart_alt ${translate("tour.tour18")}
+ this.restartNode()}>360 ${translate("nodepage.nchange33")}`
}
}
}