[minor] if address is not found then set the address_field to '' instead of None

This commit is contained in:
mbauskar 2017-04-14 17:50:32 +05:30 committed by Nabin Hait
parent 8371c1c4cd
commit 8a2e6f427b

View File

@ -90,7 +90,7 @@ erpnext.utils.get_address_display = function(frm, address_field, display_field,
}
})
} else {
frm.set_value(display_field, null);
frm.set_value(display_field, '');
}
};