Skip to content
Snippets Groups Projects
Verified Commit ccef6062 authored by Frank Mably's avatar Frank Mably
Browse files

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

parent 7f4bab3f
Branches
Tags
1 merge request!15Issue #3420915 by mably: Remove Ajax command breaking autocomplete in view filter
......@@ -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']));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment