diff --git a/modules/monitoring/application/views/scripts/show/components/comments.phtml b/modules/monitoring/application/views/scripts/show/components/comments.phtml index 671c363d1..3d5904ef4 100644 --- a/modules/monitoring/application/views/scripts/show/components/comments.phtml +++ b/modules/monitoring/application/views/scripts/show/components/comments.phtml @@ -60,7 +60,8 @@ if (empty($object->comments) && ! $addLink) { $deleteButton->populate( array( 'comment_id' => $comment->id, - 'comment_is_service' => isset($comment->service_description) + 'comment_is_service' => isset($comment->service_description), + 'comment_name' => $comment->name ) ); echo $deleteButton; diff --git a/modules/monitoring/application/views/scripts/show/components/downtime.phtml b/modules/monitoring/application/views/scripts/show/components/downtime.phtml index 5655da4c4..ded3b9248 100644 --- a/modules/monitoring/application/views/scripts/show/components/downtime.phtml +++ b/modules/monitoring/application/views/scripts/show/components/downtime.phtml @@ -89,7 +89,8 @@ if (empty($object->comments) && ! $addLink) { $deleteButton->populate( array( 'downtime_id' => $downtime->id, - 'downtime_is_service' => $object->getType() === $object::TYPE_SERVICE + 'downtime_is_service' => $object->getType() === $object::TYPE_SERVICE, + 'downtime_name' => $downtime->name ) ); echo $deleteButton;