mirror of
https://github.com/grocy/grocy.git
synced 2025-08-20 20:26:42 +00:00
Fixed preset-checklist userfield saving (fixes #2655)
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
@@ -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");
|
||||||
|
});
|
||||||
|
Reference in New Issue
Block a user