From 8760719da90b4dc3b4616bcff40c142c434d8905 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Thu, 6 May 2021 16:52:21 +0200 Subject: [PATCH] dummy: Add missing `this.` prefixes --- .../app/templates/components/print-test-attributes.hbs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/dummy/app/templates/components/print-test-attributes.hbs b/tests/dummy/app/templates/components/print-test-attributes.hbs index 60bf5127..b428813b 100644 --- a/tests/dummy/app/templates/components/print-test-attributes.hbs +++ b/tests/dummy/app/templates/components/print-test-attributes.hbs @@ -1,5 +1,5 @@ -
{{data-test-first}}
-
{{data-test-second}}
-
{{data-non-test}}
-
{{data-test}}
-
{{params.length}}
\ No newline at end of file +
{{this.data-test-first}}
+
{{this.data-test-second}}
+
{{this.data-non-test}}
+
{{this.data-test}}
+
{{this.params.length}}
\ No newline at end of file