/**
* Implements hook_form_alter().
*/
function dev_patterns_form_alter(&$form, FormStateInterface $form_state, $form_id) {
if ($form["#id"] === "views-exposed-form-news-page-1") {
$form['actions']['submit']['#attributes']['data-twig-suggestion'] = 'search_news';
}
}