Merge pull request #3489 from codyrancher/array-deprecation

Deprecate array constructor usage
This commit is contained in:
Westly Wright 2019-10-23 12:00:31 -07:00 committed by GitHub
commit d7d63dce4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ export default Helper.extend({
let _haystack = this.get('_haystack');
if (haystack !== _haystack) {
_haystack = new EmberA(haystack);
_haystack = EmberA(haystack);
this.set('_haystack', _haystack);
}