mirror of
https://github.com/inventree/InvenTree.git
synced 2025-08-14 15:41:10 +00:00
Fixed bugs in Inventree/views.py
- Need to pass request.FILES to the form! (duh!) - Prevent form data from being saved twice
This commit is contained in:
@@ -92,7 +92,7 @@
|
||||
launchModalForm("#modal-form",
|
||||
"{% url 'part-edit' part.id %}",
|
||||
{
|
||||
reload: true
|
||||
reload: true,
|
||||
});
|
||||
});
|
||||
|
||||
|
@@ -89,6 +89,9 @@
|
||||
$("#part-thumb").click(function() {
|
||||
launchModalForm("#modal-form",
|
||||
"{% url 'part-image' part.id %}",
|
||||
{
|
||||
reload: true
|
||||
}
|
||||
);
|
||||
});
|
||||
{% endblock %}
|
Reference in New Issue
Block a user