mirror of
https://github.com/grocy/grocy.git
synced 2026-03-27 23:29:25 +01:00
Fixed preset-checklist userfield saving (fixes #2655)
This commit is contained in:
parent
1f5263ef22
commit
a177e2a185
|
|
@ -48,7 +48,7 @@
|
|||
|
||||
### Userfields
|
||||
|
||||
- xxx
|
||||
- Fixed that saving Userfields of type "Select list (multiple items can be selected)" did not work
|
||||
|
||||
### General
|
||||
|
||||
|
|
|
|||
|
|
@ -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");
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user