#10266 added tip visual setup option in Open version

This commit is contained in:
Jorge Rincon 2023-04-12 14:17:10 +02:00
parent ad3f1dd8d6
commit 32c8109cbe

View File

@ -1119,8 +1119,13 @@ for ($i = 1; $i <= $graphColorAmount; $i++) {
$row = ($i % 2 === 0) ? ($row + 1) : $row; $row = ($i % 2 === 0) ? ($row + 1) : $row;
} }
$tip = ui_print_help_tip(
__('Decimal data resolution setting for SLA and other reports is not available in the Community version.'),
true
);
$table_chars->data[$row][] = html_print_label_input_block( $table_chars->data[$row][] = html_print_label_input_block(
__('Data precision'), ($disabled_graph_precision) ? __('Data precision').$tip : __('Data precision'),
html_print_input( html_print_input(
[ [
'type' => 'number', 'type' => 'number',
@ -1138,7 +1143,7 @@ $table_chars->data[$row][] = html_print_label_input_block(
); );
$table_chars->data[$row][] = html_print_label_input_block( $table_chars->data[$row][] = html_print_label_input_block(
__('Data precision in graphs'), ($disabled_graph_precision) ? __('Data precision in graphs').$tip : __('Data precision in graphs'),
html_print_input( html_print_input(
[ [
'type' => 'number', 'type' => 'number',