Skip to content

Commit 45f2e80

Browse files
committed
Fix for "Form is not showing in checkout Step" for version 2.4.6
1 parent b2c7d41 commit 45f2e80

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
"description": "N/A",
44
"type": "magento2-module",
55
"require": {
6-
"php": "~7.4.0",
7-
"magento/framework": "103.0.*"
6+
"php": "~8.1.0||~8.2.0",
7+
"magento/framework": "*",
8+
"magento/magento2-base": "2.4.6"
89
},
910
"license": [
1011
"MIT"

view/frontend/web/template/form/login.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<div class="block block-customer-login">
22
<div class="block-title">
3-
<strong id="block-customer-login-heading" role="heading" aria-level="2" data-bind="i18n: 'Registered Customers'"/>
3+
<strong id="block-customer-login-heading" role="heading" aria-level="2" data-bind="i18n: 'Registered Customers'"></strong>
44
</div>
55
<form class="form form-login" data-role="email-with-login"
66
data-bind="submit:login"
77
method="post">
88
<fieldset id="customer-email-fieldset" class="fieldset" data-bind="blockLoader: isLoading">
9-
<div class="field" data-bind="i18n: 'If you have an account, sign in with your email address.'"/>
9+
<div class="field" data-bind="i18n: 'If you have an account, sign in with your email address.'"></div>
1010
<div class="field required">
1111
<label class="label" for="customer-email">
1212
<span data-bind="i18n: 'Email Address'"></span>
@@ -57,4 +57,3 @@
5757
</fieldset>
5858
</form>
5959
</div>
60-
<!-- /ko -->
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<li id="login" data-bind="fadeVisible: isVisible()">
22
<div class="login-container">
3-
<each args="getRegion('login-form')" render="" />
4-
<each args="getRegion('create-account')" render="" />
5-
<each args="getRegion('proceed-without-login')" render="" />
3+
<each args="getRegion('login-form')" render=""></each>
4+
<each args="getRegion('create-account')" render=""></each>
5+
<each args="getRegion('proceed-without-login')" render=""></each>
66
</div>
77
</li>

0 commit comments

Comments
 (0)