Skip to content

Commit 8d75c8f

Browse files
author
Mice Xia
committed
fix for empty event detail page
1 parent 9c22d43 commit 8d75c8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ui/scripts/ui/widgets/detailView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,7 @@
846846
context: context
847847
}) : true
848848
) : true;
849-
if ($actions.find('div.action').size() || (detailViewArgs.viewAll && showViewAll)) {
849+
if ($actions && ($actions.find('div.action').size() || (detailViewArgs.viewAll && showViewAll))) {
850850
$actions.prependTo($firstRow.closest('div.detail-group').closest('.details'));
851851
}
852852
if (detailViewArgs.viewAll && showViewAll) {

0 commit comments

Comments
 (0)