Skip to content
Snippets Groups Projects

Issue #3420915 by mably: Remove Ajax command breaking autocomplete in view filter

Merged Frank Mably requested to merge issue/maestro-3420915:3420915-invalid-ajax-command into 3.x
@@ -64,7 +64,7 @@ class MaestroProcessStatusController extends ControllerBase {
}
}
// Anyone want to override the task details display or add to it?
\Drupal::moduleHandler()->invokeAll('maestro_process_status_alter',
\Drupal::moduleHandler()->invokeAll('maestro_process_status_alter',
[&$taskDetails, $processID, $template]);
$build['views_bar'] = [
@@ -134,7 +134,7 @@ class MaestroProcessStatusController extends ControllerBase {
];
$response = new AjaxResponse();
$response->addCommand(new HtmlCommand('#maestro-ajax-' . $processID, ''));
$response->addCommand(new HtmlCommand('#details_replace_column_' . $processID, ''));
$response->addCommand(new HtmlCommand('.maestro-status-toggle-' . $processID, $build['expand']));
$response->addCommand(new CssCommand('#details_replace_row_' . $processID, ['display' => 'none']));
Loading