mirror of
https://github.com/Telecominfraproject/oopt-gnpy-web-gui.git
synced 2025-11-03 03:27:52 +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 = "";
|
message = "";
|
||||||
if (fromDetails.node_type == nodeType) {
|
if (fromDetails.node_type == nodeType) {
|
||||||
if (fromConnections.length > 1) {
|
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;
|
flag = true;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@@ -6644,9 +6644,9 @@ function nodeRule(from, to, nodeType) {
|
|||||||
if (toConnections.length > 1) {
|
if (toConnections.length > 1) {
|
||||||
|
|
||||||
if (message != "")
|
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
|
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;
|
flag = true;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|||||||
Reference in New Issue
Block a user