Removed unnecessary TextField override

no issue
- Ember's TextSupport mixin (used by TextField and TextArea) has had `autofocus` as an `attributeBinding` since 1.5.0 so the override to add it is not necessary
This commit is contained in:
Kevin Ansfield 2019-02-11 13:51:10 +00:00
parent 6fdf4be0ce
commit f083e8bc59
2 changed files with 0 additions and 6 deletions

View File

@ -1,6 +1,5 @@
import 'ghost-admin/utils/link-component';
import 'ghost-admin/utils/route';
import 'ghost-admin/utils/text-field';
import Application from '@ember/application';
import Resolver from './resolver';
import config from './config/environment';

View File

@ -1,5 +0,0 @@
import TextField from '@ember/component/text-field';
TextField.reopen({
attributeBindings: ['autofocus']
});