Skip to content

Commit 1db2fe7

Browse files
committed
MAGETWO-70059: Order is not shown in customer account if its Status not visible on Storefront
- Make "Visible On Storefront" option checked by default
1 parent 68a79d9 commit 1db2fe7

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/Sales/Block/Adminhtml/Order/Status/Assign

1 file changed

+1
-1
lines changed

app/code/Magento/Sales/Block/Adminhtml/Order/Status/Assign/Form.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ protected function _prepareForm()
107107
$fieldset->addField(
108108
'visible_on_front',
109109
'checkbox',
110-
['name' => 'visible_on_front', 'label' => __('Visible On Storefront'), 'value' => 1]
110+
['name' => 'visible_on_front', 'label' => __('Visible On Storefront'), 'checked' => true, 'value' => 1]
111111
);
112112

113113
$form->setAction($this->getUrl('sales/order_status/assignPost'));

0 commit comments

Comments
 (0)