- Issue created by @rp7
- Issue was unassigned.
- Status changed to Needs review
about 2 years ago 11:55am 22 March 2023
For the add/edit modal we have the following logic for the modal title:
$page_title = isset($form['#title']) ? $form['#title'] : $this->t('Delete @label', ['@label' => $entity->label()]);
$response->addCommand(new OpenModalDialogCommand($page_title, $form, ['width' => '800px']));
For the delete modal, however, there's this logic:
$response->addCommand(new OpenModalDialogCommand(t('Delete @label', ['@label' => $entity->label()]), $form, ['width' => '800px']));
Let's align the delete modal title to that of the add/edit modal.
Needs review
1.0
Code