From 30538265e87f6a764d9693dcaf241a47035e9f5c Mon Sep 17 00:00:00 2001 From: Jonathan Date: Wed, 15 Mar 2023 16:06:42 +0100 Subject: [PATCH] Cluster wizzard visual fix --- .../lib/ClusterViewer/ClusterWizard.php | 5 +++- pandora_console/views/cluster/edit.php | 30 +++++++++++++++++++ 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/lib/ClusterViewer/ClusterWizard.php b/pandora_console/include/lib/ClusterViewer/ClusterWizard.php index df7385eabf..4cc04e2318 100644 --- a/pandora_console/include/lib/ClusterViewer/ClusterWizard.php +++ b/pandora_console/include/lib/ClusterViewer/ClusterWizard.php @@ -1250,7 +1250,10 @@ class ClusterWizard extends \HTML 'name' => 'next', 'label' => $str, 'type' => 'submit', - 'attributes' => 'class="sub next"', + 'attributes' => [ + 'icon' => 'wand', + 'mode' => 'primary', + ], 'return' => true, ], ]; diff --git a/pandora_console/views/cluster/edit.php b/pandora_console/views/cluster/edit.php index 525d159bab..eb144c5e72 100644 --- a/pandora_console/views/cluster/edit.php +++ b/pandora_console/views/cluster/edit.php @@ -127,3 +127,33 @@ if (empty($form) === false) { // Print always go back button. HTML::printForm($wizard->getGoBackForm(), false); + +html_print_action_buttons( + '', + [] +); + +?> + + \ No newline at end of file