From 505dd6d3b7695d0ff0a3cfe60cdf6d2536cbcf4c Mon Sep 17 00:00:00 2001 From: Katie Gengler Date: Thu, 9 Sep 2021 18:31:33 -0400 Subject: [PATCH] Access properties with `this.` to avoid triggering deprecations --- addon/templates/components/welcome-page.hbs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/addon/templates/components/welcome-page.hbs b/addon/templates/components/welcome-page.hbs index 32ab11a6..01cbdb06 100644 --- a/addon/templates/components/welcome-page.hbs +++ b/addon/templates/components/welcome-page.hbs @@ -1,22 +1,22 @@ -
+
- Under construction + Under construction

Congratulations, you made it!

You’ve officially spun up your Ember app. You’ve got one more decision to make: what do you want to do next? We’d suggest one of the following to help you get going:

    -
  • Quick Start - a quick introduction to how Ember works. Learn about defining your first route, writing a UI component and deploying your application.
  • -
  • Ember Guides - this is our more thorough, hands-on intro to Ember. Your crash course in Ember philosophy, background and some in-depth discussion of how things work (and why they work the way they do).
  • +
  • Quick Start - a quick introduction to how Ember works. Learn about defining your first route, writing a UI component and deploying your application.
  • +
  • Ember Guides - this is our more thorough, hands-on intro to Ember. Your crash course in Ember philosophy, background and some in-depth discussion of how things work (and why they work the way they do).

If you run into problems, please join our community's Discord server or visit our forums for ideas and answers— our community is filled with friendly folks who are willing to help! We enjoy helping new Ember developers get started, and our Ember Community is incredibly supportive.

To remove this welcome message, remove the - {{#if canAngleBracket}} + {{#if this.canAngleBracket}} <WelcomePage /> {{else}} \{{welcome-page}} @@ -24,7 +24,7 @@ component from your - {{#if isModuleUnification}} + {{#if this.isModuleUnification}} src/ui/routes/application/template.hbs {{else}} app/templates/application.hbs