Merge branch 'ent-13385-item-grouped-general-rompe-vista-html-del-reporte-cuando-usamos-regex-en-campo-module' into 'develop'
Ent 13385 item grouped general rompe vista html del reporte cuando usamos regex en campo module See merge request artica/pandorafms!7161
This commit is contained in:
commit
2593241f66
|
@ -1454,7 +1454,7 @@ $class = 'databox filters';
|
|||
<td class="bolder">
|
||||
<?php
|
||||
echo __('Module').ui_print_help_tip(
|
||||
__('Case insensitive regular expression or string for module name. For example: if you use this field with "Module exact match" enabled then this field has to be fulfilled with the literally string of the module name, if not you can use a regular expression. Example: .*usage.* will match: cpu_usage, vram usage in matchine 1.'),
|
||||
__('Case insensitive regular expression or string for module name. For example: if you use this field with "Module exact match" enabled then this field has to be fulfilled with the literally string of the module name, if not you can use a regular expression. Example: %s will match: cpu_usage, vram usage in matchine 1.', '.*usage.*'),
|
||||
true
|
||||
);
|
||||
?>
|
||||
|
|
|
@ -238,7 +238,7 @@ class TopNWidget extends Widget
|
|||
// Module.
|
||||
$inputs[] = [
|
||||
'label' => __('Module').ui_print_help_tip(
|
||||
__('Case insensitive regular expression or string for module name. For example: .*usage.* will match: cpu_usage, vram usage.'),
|
||||
__('Case insensitive regular expression or string for module name. For example: %s will match: cpu_usage, vram usage.', '.*usage.*'),
|
||||
true
|
||||
),
|
||||
'arguments' => [
|
||||
|
|
Loading…
Reference in New Issue