Merge pull request #2623 from SchrodingersGat/bom-re-upload

Allow BOM file to be "re-uploaded"
This commit is contained in:
Oliver 2022-02-13 21:58:44 +11:00 committed by GitHub
commit 1cc8fd28c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,8 +89,11 @@ $('#bom-upload').click(function() {
}, },
title: '{% trans "Upload BOM File" %}', title: '{% trans "Upload BOM File" %}',
onSuccess: function(response) { onSuccess: function(response) {
$('#bom-upload').hide();
// Clear existing entries from the table
$('.bom-import-row').remove();
// Disable the "submit" button
$('#bom-submit').show(); $('#bom-submit').show();
constructBomUploadTable(response); constructBomUploadTable(response);