mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-26 08:24:47 +00:00
[minor] render GSTIN value as "" instead of None
This commit is contained in:
@@ -28,7 +28,7 @@
|
|||||||
<div class='bordered' style='max-width: 300px; margin-bottom: 15px;'>
|
<div class='bordered' style='max-width: 300px; margin-bottom: 15px;'>
|
||||||
{{ address.display }}
|
{{ address.display }}
|
||||||
<p><input type='text' class='form-control'
|
<p><input type='text' class='form-control'
|
||||||
value='{{ address.gstin }}' name='{{ address.name }}' placeholder='GSTIN'></p>
|
value='{{ address.gstin or "" }}' name='{{ address.name }}' placeholder='GSTIN'></p>
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<p><input type='submit' class='btn btn-primary' value='Update'></p>
|
<p><input type='submit' class='btn btn-primary' value='Update'></p>
|
||||||
|
|||||||
Reference in New Issue
Block a user