commit | 8a2e6f427b7aa091c0c4a47a6e0c89ca64656469 | [log] [tgz] |
---|---|---|
author | mbauskar <mbauskar@gmail.com> | Fri Apr 14 17:50:32 2017 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Mon Apr 17 13:58:52 2017 +0530 |
tree | 3ece68d57d6f037c01db4045f5b629371be441a9 | |
parent | 8371c1c4cd88a173421c3dfce6c29211416d685f [diff] |
[minor] if address is not found then set the address_field to '' instead of None
diff --git a/erpnext/public/js/utils/party.js b/erpnext/public/js/utils/party.js index d132f92..19fe277 100644 --- a/erpnext/public/js/utils/party.js +++ b/erpnext/public/js/utils/party.js
@@ -90,7 +90,7 @@ } }) } else { - frm.set_value(display_field, null); + frm.set_value(display_field, ''); } };