Skip to content

Commit 3482b10

Browse files
committed
Merge pull request #90 from fivetanley/fix-helper-singularize-lookup
[bugfix release] fix using helpers without default Inflector
2 parents d3970f2 + cee130b commit 3482b10

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

addon/lib/helpers/pluralize.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { pluralize } from '../system/string';
1+
import { pluralize } from 'ember-inflector';
22
import makeHelper from '../utils/make-helper';
33

44
/**

addon/lib/helpers/singularize.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { singularize } from '../system/string';
1+
import { singularize } from 'ember-inflector';
22
import makeHelper from '../utils/make-helper';
33

44
/**

0 commit comments

Comments
 (0)