#11176 fixed dialog debug module

This commit is contained in:
Daniel Cebrian 2023-05-11 15:39:58 +02:00
parent 6d0650b6c6
commit 5195c6acaf
3 changed files with 4 additions and 6 deletions

View File

@ -193,7 +193,7 @@ $actionButtons .= html_print_button(
__('Debug'), __('Debug'),
'btn_debugModule', 'btn_debugModule',
$disableDebug, $disableDebug,
'loadDebugWindow()', '',
[ [
'icon' => 'cog', 'icon' => 'cog',
'mode' => 'mini secondary ', 'mode' => 'mini secondary ',

View File

@ -162,7 +162,7 @@ class WebServerModuleDebug extends Wizard
results.setReadOnly(true); results.setReadOnly(true);
results.setShowPrintMargin(false); results.setShowPrintMargin(false);
$("#submit-execute_query").click(function() { $("#button-execute_query").click(function() {
// Show the spinner. // Show the spinner.
showSpinner(true); showSpinner(true);
// Empty the results container. // Empty the results container.

View File

@ -7232,10 +7232,8 @@ function ui_query_result_editor($name='default')
] ]
); );
$buttons = html_print_submit_button(__('Execute query'), 'execute_query', false, ['icon' => 'update'], true); html_print_submit_button(__('Execute query'), 'execute_query', false, ['icon' => 'update']);
html_print_action_buttons(
$buttons
);
} }