Commit 45e38e85 by kevalbhatt

ATLAS-2474 : UI : On creating a complex entity with single character , name of…

ATLAS-2474 : UI : On creating a complex entity with single character , name of the complex entity is not displayed in the related entities' detailsPage.
parent ff605a20
......@@ -92,7 +92,7 @@ define(['require', 'utils/Utils', 'modules/Modal', 'utils/Messages', 'utils/Enum
}
id = data.guid;
}
if (value.length > 1) {
if (value.length > 0) {
scope.$('td div[data-id="' + id + '"]').html('<a href="#!/detailPage/' + id + '">' + value + '</a>');
} else {
scope.$('td div[data-id="' + id + '"]').html('<a href="#!/detailPage/' + id + '">' + _.escape(id) + '</a>');
......
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