Skip to content
Snippets Groups Projects
Commit 483e3889 authored by colemanw's avatar colemanw
Browse files

Merge pull request #2426 from davecivicrm/CRM-14143

CRM-14143 - Fix group selector display when showOrgInfo is true - multi-...
parents c192fbee 995d35d9
No related branches found
No related tags found
No related merge requests found
...@@ -289,6 +289,9 @@ function showChildren( parent_id, showOrgInfo, group_id, levelClass) { ...@@ -289,6 +289,9 @@ function showChildren( parent_id, showOrgInfo, group_id, levelClass) {
} }
appendHTML += "<td>" + val.group_type + "</td>"; appendHTML += "<td>" + val.group_type + "</td>";
appendHTML += "<td>" + val.visibility + "</td>"; appendHTML += "<td>" + val.visibility + "</td>";
if (showOrgInfo) {
appendHTML += "<td>" + val.org_info + "</td>";
}
appendHTML += "<td>" + val.links + "</td>"; appendHTML += "<td>" + val.links + "</td>";
appendHTML += "</tr>"; appendHTML += "</tr>";
}); });
......
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