1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-02-22 14:00:10 +00:00

Fix emptying metadata form after submit

This commit is contained in:
James Armstong 2024-08-02 20:10:43 -07:00
parent ecda717bed
commit ab3d4e4f21

View File

@ -207,15 +207,15 @@ $(function() {
$("#books-table").bootstrapTable("refresh");
$("#books-table").bootstrapTable("uncheckAll");
$("#title_input").value = "";
$("#title_sort_input").value = "";
$("#author_sort_input").value = "";
$("#authors_input").value = "";
$("#categories_input").value = "";
$("#series_input").value = "";
$("#languages_input").value = "";
$("#publishers_input").value = "";
$("#comments_input").value = "";
$("#title_input").val("");
$("#title_sort_input").val("");
$("#author_sort_input").val("");
$("#authors_input").val("");
$("#categories_input").val("");
$("#series_input").val("");
$("#languages_input").val("");
$("#publishers_input").val("");
$("#comments_input").val("");
handleListServerResponse;
},