Skip to content
Snippets Groups Projects
Commit bd349c2d authored by Rakesh Kumar Regar's avatar Rakesh Kumar Regar Committed by Kapil Kumar
Browse files

Issue #3393300: Delete button not working

parent a242df0a
No related branches found
No related tags found
1 merge request!18Issue #3393300: Delete button not working
......@@ -87,6 +87,7 @@ class ListScriptsFormDeleteMultiple extends ConfirmFormBase {
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$form = parent::buildForm($form, $form_state);
return $form;
}
......
......@@ -120,6 +120,10 @@ class ListscriptsForm extends FormBase {
],
];
$form['actions'] = [
'#type' => 'actions',
];
$form['actions']['submit'] = [
'#type' => 'submit',
'#value' => $this->t('Apply to selected scripts'),
......
......@@ -82,7 +82,7 @@ class ScriptsFormDelete extends ConfirmFormBase {
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$form = parent::buildForm($form, $form_state);
return $form;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment