Fixed preset-checklist userfield saving (fixes #2655)

This commit is contained in:
Bernd Bestel
2025-01-29 23:27:17 +01:00
parent 1f5263ef22
commit a177e2a185
2 changed files with 6 additions and 1 deletions

View File

@@ -394,3 +394,8 @@ $(".userfield-input").change(function(e)
Grocy.FrontendHelpers.ValidateForm(this.id);
});
});
$(".userfield-input.selectpicker").on("changed.bs.select", function()
{
$(this).addClass("is-dirty");
});