Skip to content

Commit 941b460

Browse files
committed
Auto merge of #2088 - jtgeibel:ember-lint-use-closure-action, r=Turbo87
Fix a deprecation warning during `ember build` The lint references https://emberjs.com/deprecations/v3.x#toc_ember-component-send-action. There is no usage of `sendAction` in the component, so I believe no further changes are needed there. r? Turbo87
2 parents bed6657 + d4798bd commit 941b460

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/templates/components/api-token-row.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@disabled={{this.api_token.isSaving}}
88
@value={{this.api_token.name}}
99
@autofocus="autofocus"
10-
@enter="saveToken"
10+
@enter={{action "saveToken"}}
1111
data-test-focused-input
1212
/>
1313
{{else}}

0 commit comments

Comments
 (0)