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

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);
});