fix: [workflow:standalone_module_execute] Clear error output on sucess

composer_fix
Sami Mokaddem 2023-02-23 10:45:28 +01:00
parent 39408794ef
commit d418f33835
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 1 additions and 1 deletions

View File

@ -159,9 +159,9 @@ $type_mapper = [
.addClass(jqXHR.status == 200 ? 'label-success' : 'label-important')
if (typeof result === 'object') {
$executionResultText.text(JSON.stringify(result, '', 4));
$('#executionResultHtml').empty();
} else {
$('#executionResultHtml').html(result);
// $executionResultText.text(result);
}
}