Skip to content

Commit

Permalink
ENGCOM-3576: style: change b to strong (a11y) #19421
Browse files Browse the repository at this point in the history
 - Merge Pull Request #19421 from DanielRuf/magento2:style/change-b-to-strong
 - Merged commits:
   1. 072660e
   2. 31e8a66
  • Loading branch information
magento-engcom-team committed Dec 5, 2018
2 parents f0aa8d8 + 31e8a66 commit a9ff095
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,22 +130,22 @@ public function layoutDirectiveDataProvider()
'area parameter - omitted' => [
'adminhtml',
'handle="email_template_test_handle"',
'<b>Email content for frontend/Magento/default theme</b>',
'<strong>Email content for frontend/Magento/default theme</strong>',
],
'area parameter - frontend' => [
'adminhtml',
'handle="email_template_test_handle" area="frontend"',
'<b>Email content for frontend/Magento/default theme</b>',
'<strong>Email content for frontend/Magento/default theme</strong>',
],
'area parameter - backend' => [
'frontend',
'handle="email_template_test_handle" area="adminhtml"',
'<b>Email content for adminhtml/Magento/default theme</b>',
'<strong>Email content for adminhtml/Magento/default theme</strong>',
],
'custom parameter' => [
'frontend',
'handle="email_template_test_handle" template="Magento_Email::sample_email_content_custom.phtml"',
'<b>Custom Email content for frontend/Magento/default theme</b>',
'<strong>Custom Email content for frontend/Magento/default theme</strong>',
],
];
return $result;
Expand Down
3 changes: 3 additions & 0 deletions setup/view/magento/setup/extension-grid.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/

// @codingStandardsIgnoreFile

?>
<h2 class="page-title">{{$state.current.header}}</h2>

Expand Down

0 comments on commit a9ff095

Please sign in to comment.