EDFA error message updated

This commit is contained in:
sakv2e10204
2022-04-13 11:39:57 +05:30
parent 05d9149b8a
commit 146e7b02d3
2 changed files with 3 additions and 3 deletions

View File

@@ -6627,7 +6627,7 @@ function nodeRule(from, to, nodeType) {
message = "";
if (fromDetails.node_type == nodeType) {
if (fromConnections.length > 1) {
message = fromDetails.label + ' cannot have more than one incoming and one outgoing connection. ';
message = fromDetails.label + ' cannot have more than 2 links, one incoming and 1 outgoing. ';
flag = true;
}
else {
@@ -6644,9 +6644,9 @@ function nodeRule(from, to, nodeType) {
if (toConnections.length > 1) {
if (message != "")
message += "<br /> <br />" + toDetails.label + ' cannot have more than one incoming and one outgoing connection';
message += "<br /> <br />" + toDetails.label + ' cannot have more than 2 links, one incoming and 1 outgoing';
else
message += toDetails.label + ' cannot have more than one incoming and one outgoing connection';
message += toDetails.label + ' cannot have more than 2 links, one incoming and 1 outgoing';
flag = true;
}
else {