Skip to content

Commit

Permalink
STRF-3591 add return instructions in return-saved.html
Browse files Browse the repository at this point in the history
  • Loading branch information
bc-williamkwon committed Jun 28, 2019
1 parent ef27d20 commit 2cb1cb9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Draft
- Update @babel/polyfill to 7.4.4 [#1521](https://github.com/bigcommerce/cornerstone/pull/1521)
- Add maxlength to text options [#1531](https://github.com/bigcommerce/cornerstone/pull/1531)
- Add return instructions in return-saved.html [#1525](https://github.com/bigcommerce/cornerstone/pull/1525)

## 3.5.1 (2019-06-24)
- Fix conditional logic in share.html [#1522](https://github.com/bigcommerce/cornerstone/pull/1522)
Expand Down
1 change: 1 addition & 0 deletions lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,7 @@
},
"returns": {
"heading": "Returns",
"instructions": "Return Instructions",
"error_no_qty": "Please select one or more items to return.",
"none": "You haven't placed any returns with us. When you do, they will appear on this page.",
"new_return": "New Return",
Expand Down
6 changes: 5 additions & 1 deletion templates/pages/account/return-saved.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{{#partial "page"}}
<div class="account">
{{> components/common/breadcrumbs breadcrumbs=breadcrumbs}}
<h2 class="page-heading">{{lang 'account.returns.heading' }}</h2>
<h2 class="page-heading">{{lang 'account.returns.heading'}}</h2>
{{> components/account/navigation account_page='returns'}}
<div class="account-row">
<p>
{{lang 'account.returns.successful'}}
</p>
{{#if return.instructions}}
<h3>{{lang 'account.returns.instructions'}}</h3>
<p>{{return.instructions}}</p>
{{/if}}
</div>
</div>
{{/partial}}
Expand Down

0 comments on commit 2cb1cb9

Please sign in to comment.