Commit ba14415b authored by Ivan Duarte's avatar Ivan Duarte Committed by Marcin Grabias
Browse files

Issue #3311031 by jidrone: Form actions should be of type actions

parent 41b5ee1d
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -91,7 +91,10 @@ class ConfigureAction extends FormBase {

    // :D Make sure the submit button is at the bottom of the form
    // and is editable from the action buildConfigurationForm method.
    $form['actions']['#weight'] = 666;
    $form['actions'] = [
      '#type' => 'actions',
      '#weight' => 666,
    ];
    $form['actions']['submit'] = [
      '#type' => 'submit',
      '#value' => $this->t('Apply'),