From dcfa556c07b3c2524d277aa59ccfebb54e90bcd9 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Fri, 20 Dec 2019 13:56:06 -0500 Subject: [PATCH] DEPRECATION: Passing actions to components as strings is deprecated. DEPRECATION: Passing actions to components as strings (like `{{input enter="search"}}`) is deprecated. Please use closure actions instead (`{{input enter=(action "search")}}`). ('cargo/templates/catch-all.hbs' @ L6:C2) [deprecation id: ember-component.send-action] See https://emberjs.com/deprecations/v3.x#toc_ember-component-send-action for more details. --- app/templates/catch-all.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/catch-all.hbs b/app/templates/catch-all.hbs index c4a01a5a5e6..328486844a3 100644 --- a/app/templates/catch-all.hbs +++ b/app/templates/catch-all.hbs @@ -6,6 +6,6 @@ {{input type="text" class="search" placeholder="Search" value=search - enter="search" + enter=(action "search") required=true}}