We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When i do:
ember --generate -vt Form/Base
A template is generated with the following name "form/base" which prevents the Ember View/Template magic.
in my case I had to manually add the templateName property to my view.
The text was updated successfully, but these errors were encountered:
What is the reason for var resourceName = inflector.underscore(resource) instead of var resourceName = inflector.camelize(resource, true)
var resourceName = inflector.underscore(resource)
var resourceName = inflector.camelize(resource, true)
this would solve the above problem no?
Sorry, something went wrong.
No branches or pull requests
When i do:
A template is generated with the following name "form/base" which prevents the Ember View/Template magic.
in my case I had to manually add the templateName property to my view.
The text was updated successfully, but these errors were encountered: