Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ingadhoc/website
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 96b6480742f2171383e9d8e1be2dd9d1e9c82596
Choose a base ref
..
head repository: ingadhoc/website
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9a14caead877c5858f3dea5cc87a09a1126a2ba7
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 website_sale_require_state/static/src/js/website_sale_require_state.js
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ publicWidget.registry.WebsiteSale.include({
if (selectStates.data('init') === 0 || selectStates.find('option').length === 1) {
if (data.states.length) {
selectStates.html('');
selectStates.append('<option value="">Select...</option>');
selectStates.append('<option value="">State / Province...</option>');
_.each(data.states, function (x) {
var opt = $('<option>').text(x[1])
.attr('value', x[0])