mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Live update part image
This commit is contained in:
parent
2e1ad0c245
commit
70a073be21
@ -244,7 +244,14 @@
|
|||||||
label: 'image',
|
label: 'image',
|
||||||
method: 'PATCH',
|
method: 'PATCH',
|
||||||
success: function(data, status, xhr) {
|
success: function(data, status, xhr) {
|
||||||
location.reload();
|
|
||||||
|
// If image / thumbnail data present, live update
|
||||||
|
if (data.image) {
|
||||||
|
$('#part-image').attr('src', data.image);
|
||||||
|
} else {
|
||||||
|
// Otherwise, reload the page
|
||||||
|
location.reload();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user