#12268 add tooltip redirect message

This commit is contained in:
Jonathan 2023-11-07 09:38:40 +01:00
parent ab6aa1ba57
commit 5cc31e26db
2 changed files with 10 additions and 1 deletions

View File

@ -331,8 +331,13 @@ class EventCardboard extends Widget
$return_all_group = true; $return_all_group = true;
} }
$help_tip = ui_print_help_tip(
__('Only the first group selected will be used on the redirect to events view.'),
true
);
$inputs['inputs']['row1'][] = [ $inputs['inputs']['row1'][] = [
'label' => __('Groups'), 'label' => __('Groups').$help_tip,
'arguments' => [ 'arguments' => [
'type' => 'select_groups', 'type' => 'select_groups',
'name' => 'groupId[]', 'name' => 'groupId[]',

View File

@ -953,3 +953,7 @@ input.resize_button {
.parent_graph > .graph { .parent_graph > .graph {
margin-left: 10px; margin-left: 10px;
} }
.event-cardboard-widget td {
cursor: pointer;
}