mirror of
https://github.com/Telecominfraproject/oopt-gnpy-web-gui.git
synced 2025-10-30 01:32:21 +00:00
EDFA error message updated
This commit is contained in:
Binary file not shown.
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user