Skip to content

Commit

Permalink
account.js template literal fix (#2464)
Browse files Browse the repository at this point in the history
* account.js template literal fix

* adding changelog

* adding changelog

* Update CHANGELOG.md
  • Loading branch information
Dpschu2 authored May 22, 2024
1 parent 3bbcca4 commit 7b738c0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Draft
- Account.js - Fixed jquery selector to be template literal [#2464](https://github.com/bigcommerce/cornerstone/pull/2464)

## 6.14.0 (05-15-2024)
- Account.php <a href> is inside of a list item [#2457](https://github.com/bigcommerce/cornerstone/pull/2457)
Expand Down
2 changes: 1 addition & 1 deletion assets/js/theme/account.js
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ export default class Account extends PageManager {
const validationModel = validation($editAccountForm, this.context);
const formEditSelector = 'form[data-edit-account-form]';
const editValidator = nod({
submit: '${formEditSelector} input[type="submit"]',
submit: `${formEditSelector} input[type="submit"]`,
delay: 900,
});
const emailSelector = `${formEditSelector} [data-field-type="EmailAddress"]`;
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7b738c0

Please sign in to comment.