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
path: root/ui
diff options
context:
space:
mode:
authorReinis Detlavs <reinis.detlavs@zabbix.com>2022-02-18 12:30:33 +0300
committerReinis Detlavs <reinis.detlavs@zabbix.com>2022-02-18 12:30:33 +0300
commitdea7a76a64fc91e13f3ac82be6e46ec0faef93cd (patch)
treed06009044a65fe7e244013e1264d07c4f994d471 /ui
parent6452e39d0f2355f048f8b1189d4187170196bd29 (diff)
parentb35b5a1943cdd6089b6db19c03c4d2b1168e61e9 (diff)
..F....... [ZBX-20430] fixed stretching action log screen because of long messages without whitespace
Merge in ZBX/zabbix from feature/ZBX-20430-5.5 to release/5.4 * commit 'b35b5a1943cdd6089b6db19c03c4d2b1168e61e9': ..F....... [ZBX-20430] fixed stretching action log screen because of long messages without whitespace
Diffstat (limited to 'ui')
-rw-r--r--ui/include/views/administration.auditacts.list.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/include/views/administration.auditacts.list.php b/ui/include/views/administration.auditacts.list.php
index 078143b9080..768c5dce3fe 100644
--- a/ui/include/views/administration.auditacts.list.php
+++ b/ui/include/views/administration.auditacts.list.php
@@ -91,17 +91,17 @@ foreach ($this->data['alerts'] as $alert) {
? [
bold(_('Subject').':'),
BR(),
- $alert['subject'],
+ (new CDiv($alert['subject']))->addClass(ZBX_STYLE_WORDBREAK),
BR(),
BR(),
bold(_('Message').':'),
BR(),
- zbx_nl2br($alert['message'])
+ (new CDiv(zbx_nl2br($alert['message'])))->addClass(ZBX_STYLE_WORDBREAK)
]
: [
bold(_('Command').':'),
BR(),
- zbx_nl2br($alert['message'])
+ (new CDiv(zbx_nl2br($alert['message'])))->addClass(ZBX_STYLE_WORDBREAK)
];
$info_icons = [];