Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog.d/bugfix/ZBX-193061
-rw-r--r--ui/app/partials/monitoring.latest.view.html.php3
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog.d/bugfix/ZBX-19306 b/ChangeLog.d/bugfix/ZBX-19306
new file mode 100644
index 00000000000..b21a63ab98b
--- /dev/null
+++ b/ChangeLog.d/bugfix/ZBX-19306
@@ -0,0 +1 @@
+..F....... [ZBX-19306] fixed broken item configuration link in latest data results (miks)
diff --git a/ui/app/partials/monitoring.latest.view.html.php b/ui/app/partials/monitoring.latest.view.html.php
index c678b9c297c..f35fbae6068 100644
--- a/ui/app/partials/monitoring.latest.view.html.php
+++ b/ui/app/partials/monitoring.latest.view.html.php
@@ -169,7 +169,8 @@ foreach ($data['items'] as $itemid => $item) {
$item_config_url = (new CUrl('items.php'))
->setArgument('form', 'update')
- ->setArgument('itemid', $itemid);
+ ->setArgument('itemid', $itemid)
+ ->setArgument('context', 'host');
$item_key = ($item['type'] == ITEM_TYPE_HTTPTEST)
? (new CSpan($item['key_expanded']))->addClass(ZBX_STYLE_GREEN)