Skip to content

Commit

Permalink
dummy: Add missing this. prefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Turbo87 committed May 6, 2021
1 parent 9510095 commit 8760719
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 8760719

Please sign in to comment.