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

@@ -48,7 +48,7 @@
### Userfields ### Userfields
- xxx - Fixed that saving Userfields of type "Select list (multiple items can be selected)" did not work
### General ### General

View File

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