We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc19c86 commit 85a13dfCopy full SHA for 85a13df
1 file changed
ui/scripts/ui/widgets/detailView.js
@@ -836,7 +836,7 @@
836
actionFilter: actionFilter,
837
data: data,
838
context: $detailView.data('view-args').context
839
- }).prependTo($firstRow.closest('div.detail-group').closest('.details'));
+ });
840
841
// 'View all' button
842
var showViewAll = detailViewArgs.viewAll ?
@@ -846,6 +846,9 @@
846
context: context
847
}) : true
848
) : true;
849
+ if ($actions.find('div.action').size() || (detailViewArgs.viewAll && showViewAll)) {
850
+ $actions.prependTo($firstRow.closest('div.detail-group').closest('.details'));
851
+ }
852
if (detailViewArgs.viewAll && showViewAll) {
853
$('<div>')
854
.addClass('view-all')
0 commit comments