Fixed filter clearing on /products (fixes #1512)

This commit is contained in:
Bernd Bestel 2021-06-27 18:41:07 +02:00
parent 9ef48e79cd
commit e44f4802d5
No known key found for this signature in database
GPG Key ID: 71BD34C0D4891300

View File

@ -36,7 +36,7 @@ $("#clear-filter-button").on("click", function()
{
$("#search").val("");
$("#product-group-filter").val("all");
productsTable.column(7).search("").draw();
productsTable.column(6).search("").draw();
productsTable.search("").draw();
$("#show-disabled").prop('checked', false);
});