Skip to content
Snippets Groups Projects
Commit 12452474 authored by juanf's avatar juanf
Browse files

SSDM-4599 : Avoid to modify children without changes, people can now update...

SSDM-4599 : Avoid to modify children without changes, people can now update samples with children in spaces where they don't have rights.

SVN: 37639
parent 4aa9166e
No related branches found
No related tags found
No related merge requests found
......@@ -44,8 +44,8 @@ var SampleDataGridUtil = new function() {
sortable : true,
render : function(data) {
var nameToUse = "N/A";
if(data.Name) {
nameToUse = data.Name;
if(data.NAME) {
nameToUse = data.NAME;
}
return (isLinksDisabled)?nameToUse:FormUtil.getFormLink(nameToUse, "Sample", data.permId);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment