diff --git a/pandora_console/include/javascript/pandora_dashboards.js b/pandora_console/include/javascript/pandora_dashboards.js
index e36eab7b40..f6e4445744 100644
--- a/pandora_console/include/javascript/pandora_dashboards.js
+++ b/pandora_console/include/javascript/pandora_dashboards.js
@@ -254,7 +254,7 @@ function initialiceLayout(data) {
confirmDialog({
title: "Are you sure?",
message:
- "
All changes made to this widget will be lost
",
+ "All changes made to this widget will be lost
",
cancel: "Cancel",
ok: "Ok",
onAccept: function() {
@@ -718,7 +718,7 @@ function initialiceLayout(data) {
confirmDialog({
title: "Are you sure?",
message:
- "All changes made to this widget will be lost
",
+ "All changes made to this widget will be lost
",
cancel: "Cancel",
ok: "Ok",
onAccept: function() {
diff --git a/pandora_console/include/lib/Dashboard/Widgets/events_list.php b/pandora_console/include/lib/Dashboard/Widgets/events_list.php
index 399db734d3..d0cccd3d73 100644
--- a/pandora_console/include/lib/Dashboard/Widgets/events_list.php
+++ b/pandora_console/include/lib/Dashboard/Widgets/events_list.php
@@ -400,7 +400,7 @@ class EventsListWidget extends Widget
// Severity.
$fields = \get_priorities();
- $inputs['inputs']['row2'][] = [
+ $inputs['inputs']['row1'][] = [
'label' => \__('Severity'),
'arguments' => [
'type' => 'select',
@@ -719,7 +719,7 @@ class EventsListWidget extends Widget
{
$size = [
'width' => 800,
- 'height' => 520,
+ 'height' => (is_metaconsole() === true) ? 600 : 550,
];
return $size;
diff --git a/pandora_console/include/lib/Dashboard/Widgets/tree_view.php b/pandora_console/include/lib/Dashboard/Widgets/tree_view.php
index 8360192c01..9327c7c132 100644
--- a/pandora_console/include/lib/Dashboard/Widgets/tree_view.php
+++ b/pandora_console/include/lib/Dashboard/Widgets/tree_view.php
@@ -735,7 +735,7 @@ class TreeViewWidget extends Widget
{
$size = [
'width' => 450,
- 'height' => 590,
+ 'height' => (is_metaconsole() === true) ? 500 : 590,
];
return $size;