diff --git a/beat/web/reports/static/reports/app/directives/edit/layout.js b/beat/web/reports/static/reports/app/directives/edit/layout.js
index 015cd3261e39a3e9bccfad772680bd520a5582ce..ad31140e5ff34616a979c639c035d1f54b553028 100644
--- a/beat/web/reports/static/reports/app/directives/edit/layout.js
+++ b/beat/web/reports/static/reports/app/directives/edit/layout.js
@@ -35,7 +35,7 @@ angular.module('reportApp').directive("groupsLayout", ['GroupsService', function
 			scope.groups = GroupsService.groups;
 			scope.GroupsService = GroupsService;
 			scope.sortableOptions = {
-				handle: '> .panel-heading > .panel-title > .drag-handle'
+				handle: '.panel-heading > .panel-title > .action-buttons > .drag-handle'
 			};
 		},
 		template: `
diff --git a/beat/web/reports/static/reports/app/directives/edit/panelContent.js b/beat/web/reports/static/reports/app/directives/edit/panelContent.js
index 589c2c6fd18ea186faecc2f8db40de9c430652c3..023b6f7786492772bac4c948c622e1eee3af3a2f 100644
--- a/beat/web/reports/static/reports/app/directives/edit/panelContent.js
+++ b/beat/web/reports/static/reports/app/directives/edit/panelContent.js
@@ -76,7 +76,7 @@ angular.module('reportApp').directive("groupPanelContent", ['GroupsService', fun
 			</span>
 			<span
 				class='btn btn-default drag-handle'
-				data-toggle='tooltip' data-placement='top' title='Drag to re-order groups'>
+				data-toggle='tooltip' data-placement='top' title='Drag to re-order group'>
 				<i class='fa fa-arrows fa-lg'></i>
 			</span>
 		</div>
diff --git a/beat/web/reports/static/reports/app/directives/edit/panelExperiments.js b/beat/web/reports/static/reports/app/directives/edit/panelExperiments.js
index 7bd0d7702bd8b5a17e65e317441a6e8002b5d8a8..a91c9e050f0c2f4431df702016bc53cb574af277 100644
--- a/beat/web/reports/static/reports/app/directives/edit/panelExperiments.js
+++ b/beat/web/reports/static/reports/app/directives/edit/panelExperiments.js
@@ -103,8 +103,9 @@ angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService',
 					<td>
 						<div class='btn-group action-buttons'>
 							<span
+								style='cursor: pointer;'
 								ng-click='group.removeExperiment(expName)'
-								class="btn btn-default btn-delete"
+								class="btn-delete"
 								data-toggle="tooltip" data-placement="top" title="Remove Experiment from Group">
 								<i class="fa fa-times fa-lg"></i>
 							</span>