You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, this project is really awesome coming to Ember from Rails. Just wanted to get that out there.
I ran this command: ember generate --scaffold todo title:string complete:boolean
This correctly got the data type in the model (complete: DS.attr('boolean')), but a boolean should render a checkbox in the view. Instead, it was a text field, like so:
So, this project is really awesome coming to Ember from Rails. Just wanted to get that out there.
I ran this command:
ember generate --scaffold todo title:string complete:boolean
This correctly got the data type in the model (
complete: DS.attr('boolean')
), but a boolean should render a checkbox in the view. Instead, it was a text field, like so:The text was updated successfully, but these errors were encountered: