Skip to content

Commit

Permalink
Making country select have a null prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
cohitre committed Feb 6, 2015
1 parent 6295075 commit cf9607f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion app/templates/modals/customer-info-modal.hbs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{{#view "form-fields/form-section" model=view.model sectionTitle="Customer information"}}
{{view.model.name}}
{{view "form-fields/text-form-field"
model=view.model
labelText="Name"
Expand Down
2 changes: 1 addition & 1 deletion app/views/form-fields/country-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var CountrySelectView = SelectFormFieldView.extend({
content: Ember.computed(function() {
var result = [{
name: "",
code: ""
code: null
}];
return result.concat(CountryCodes);
}),
Expand Down

0 comments on commit cf9607f

Please sign in to comment.