Issue #2807807 by Prashant.c, DanielVeza, cilefen: Properly wrap action module help for the "add" and "edit" options in a <p> tag

merge-requests/3172/head
xjm 2022-12-27 13:34:14 -06:00
parent 40664e7185
commit 6d7ec44ea4
No known key found for this signature in database
GPG Key ID: 206B0B8743BDF4C2
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ function action_help($route_name, RouteMatchInterface $route_match) {
case 'action.admin_add':
case 'entity.action.edit_form':
return t('An advanced action offers additional configuration options which may be filled out below. Changing the <em>Label</em> field is recommended in order to better identify the precise action taking place.');
return '<p>' . t('An advanced action offers additional configuration options which may be filled out below. Changing the <em>Label</em> field is recommended in order to better identify the precise action taking place.') . '</p>';
}
}