Skip to content

Commit

Permalink
MAGETWO-32125: [FF33] Broken design for "select store" element in CMS…
Browse files Browse the repository at this point in the history
… grid filter

 - Fixed "Line exceeds maximum limit of 120 characters; contains 132 characters"
  • Loading branch information
guz-anton committed Mar 15, 2015
1 parent 328ed31 commit d313bb3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/code/Magento/Backend/Block/Widget/Grid/Extended.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,11 @@ protected function _prepareLayout()
$this->setChild(
'reset_filter_button',
$this->getLayout()->createBlock('Magento\Backend\Block\Widget\Button')->setData(
['label' => __('Reset Filter'), 'onclick' => $this->getJsObjectName() . '.resetFilter()', 'class' => 'action-reset']
[
'label' => __('Reset Filter'),
'onclick' => $this->getJsObjectName() . '.resetFilter()',
'class' => 'action-reset'
]
)
);
$this->setChild(
Expand Down

0 comments on commit d313bb3

Please sign in to comment.