diff options
| author | Mark Wells <mark@freeside.biz> | 2013-07-06 17:31:27 -0700 | 
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2013-07-06 17:31:27 -0700 | 
| commit | ee8a3fde6a425db37f1e23ad0f0e977d6f0d1e93 (patch) | |
| tree | 8aeceef5fe6162fa2bfc1998836a380ca60f5e49 | |
| parent | 90398f046915a915f65976e33ce060ac5baabbae (diff) | |
minor UI fix
| -rw-r--r-- | httemplate/elements/tr-select-cust-part_pkg.html | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/httemplate/elements/tr-select-cust-part_pkg.html b/httemplate/elements/tr-select-cust-part_pkg.html index af66fc31d..300a7755e 100644 --- a/httemplate/elements/tr-select-cust-part_pkg.html +++ b/httemplate/elements/tr-select-cust-part_pkg.html @@ -11,7 +11,7 @@        var optionName = new Option(text, value, false, false);        optionName.setAttribute('data-can_discount',   can_discount);        optionName.setAttribute('data-can_start_date', can_start_date); -      optionName.setAttribute('data-start_date',     start_date); +      optionName.setAttribute('data-start_date',     start_date || '');        var length = what.length;        what.options[length] = optionName;      } | 
