From: sleewok Date: Thu, 24 Mar 2016 13:57:43 +0000 (-0400) Subject: Fix child groups so that they can be expanded X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=0fcff71a4429f1dcbab9a84619131f68371ce82b;p=civicrm-core.git Fix child groups so that they can be expanded When managing groups you cannot expand (uncollapse) 2nd level child groups. Clicking on the arrow to view children initiates inline editing. The inline editing field is encompassing the expand icon that allows children to be viewed. This effectively breaks management of child groups from the manage groups page. Changing this line fixes the issue. --- diff --git a/templates/CRM/Group/Form/Search.tpl b/templates/CRM/Group/Form/Search.tpl index 7a7778f4b8..147aefc35c 100644 --- a/templates/CRM/Group/Form/Search.tpl +++ b/templates/CRM/Group/Form/Search.tpl @@ -211,7 +211,7 @@ $.each( response.data, function( i, val ) { appendHTML += ''; if ( val.is_parent ) { - appendHTML += '' + '{/literal}{literal}' + val.title + ''; + appendHTML += '' + '{/literal}
{literal}' + val.title + '
'; } else { appendHTML += '' + '{/literal}{literal}' + val.title + '';