Skip to content

Commit

Permalink
Merge pull request #1222 from Ubersmake/STRF-4497
Browse files Browse the repository at this point in the history
fix(storefront): STRF-4497 Removed default whitespace in textarea product option.
  • Loading branch information
Ubersmake authored May 2, 2018
2 parents c2be2f0 + 7b2be82 commit 4ebd047
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- Hide blank review stars when there are no reviews on a product [#1209](https://github.com/bigcommerce/cornerstone/pull/1209)
- Fix styling of subpage links in Contact Us page [#1216](https://github.com/bigcommerce/cornerstone/pull/1216)
- Add lazyloading to main product video and fix video thumbnail bug [#1217](https://github.com/bigcommerce/cornerstone/pull/1217)
- Fix for excess whitespace in multiline text field product option [#1222](https://github.com/bigcommerce/cornerstone/pull/1222)

## 1.17.0 (2018-04-26)
- Fix empty object issue in app.js [#1204](https://github.com/bigcommerce/cornerstone/pull/1204)
Expand Down
4 changes: 1 addition & 3 deletions templates/components/products/options/textarea.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,5 @@
{{/if}}
</label>

<textarea class="form-input" id="attribute_{{id}}" name="attribute[{{id}}]" {{#if required}}required{{/if}}>
{{prefill}}
</textarea>
<textarea class="form-input" id="attribute_{{id}}" name="attribute[{{id}}]" {{#if required}}required{{/if}}>{{prefill}}</textarea>
</div>

0 comments on commit 4ebd047

Please sign in to comment.