Skip to content

Commit

Permalink
Docs: Add changelog note
Browse files Browse the repository at this point in the history
  • Loading branch information
mikoscz committed Jun 18, 2020
1 parent 1026749 commit a3a3486
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions changelog_unreleased/handlebars/pr-8593.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#### Fix formatting of classic components inside element ([#8593](https://github.com/prettier/prettier/pull/8593) by [@mikoscz](https://github.com/mikoscz)

<!-- prettier-ignore -->
```hbs
{{!-- Input --}}
<div>
{{classic-component-with-many-properties
class="hello"
param=this.someValue
secondParam=this.someValue
thirdParam=this.someValue
}}
</div>
{{!-- Prettier stable --}}
<div>
{{
classic-component-with-many-properties
class="hello"
param=this.someValue
secondParam=this.someValue
thirdParam=this.someValue
}}
</div>
{{!-- Prettier master --}}
<div>
{{classic-component-with-many-properties
class="hello"
param=this.someValue
secondParam=this.someValue
thirdParam=this.someValue
}}
</div>
```

0 comments on commit a3a3486

Please sign in to comment.