Skip to content

Commit

Permalink
Merge pull request #701 from Turbo87/this
Browse files Browse the repository at this point in the history
dummy: Add missing `this.` prefixes
  • Loading branch information
Turbo87 authored May 6, 2021
2 parents 21f06ae + 8760719 commit 2a6a50e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/dummy/app/templates/components/print-test-attributes.hbs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="data-test-first">{{data-test-first}}</div>
<div class="data-test-second">{{data-test-second}}</div>
<div class="data-non-test">{{data-non-test}}</div>
<div class="data-test">{{data-test}}</div>
<div class="data-test-positional-params">{{params.length}}</div>
<div class="data-test-first">{{this.data-test-first}}</div>
<div class="data-test-second">{{this.data-test-second}}</div>
<div class="data-non-test">{{this.data-non-test}}</div>
<div class="data-test">{{this.data-test}}</div>
<div class="data-test-positional-params">{{this.params.length}}</div>

0 comments on commit 2a6a50e

Please sign in to comment.