Commit 9ea1b890 authored by Dietmar Maurer's avatar Dietmar Maurer

NodeSelector: fix error message for disabled nodes

parent 897553c8
...@@ -81,7 +81,7 @@ Ext.define('PVE.form.NodeSelector', { ...@@ -81,7 +81,7 @@ Ext.define('PVE.form.NodeSelector', {
}); });
if (notAllowed.length !== 0) { if (notAllowed.length !== 0) {
return "Node " + offline.join(', ') + " is disabled (not allowed for this action)!"; return "Node " + notAllowed.join(', ') + " is not allowed for this action!";
} }
if (offline.length !== 0) { if (offline.length !== 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment