Skip to content

Commit

Permalink
Fix #39. Better to put '----' for field. Implementation of '*' to ret…
Browse files Browse the repository at this point in the history
…urn all the fields will be done in the future.
  • Loading branch information
versae committed Jan 5, 2015
1 parent bbc79be commit f24becd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_qbe/static/django_qbe/js/qbe.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ qbe.Core = function() {};
optFields.push(option);
}
}
$("#"+ domTo).html('<option value="">*</option>' + optPrimaries.join("") + optForeigns.join("") + optManies.join("") + optFields.join(""));
$("#"+ domTo).html('<option value="">----</option>' + optPrimaries.join("") + optForeigns.join("") + optManies.join("") + optFields.join(""));
// We need to raise change event
$("#"+ domTo).change();
}
Expand Down

0 comments on commit f24becd

Please sign in to comment.