Fixed link userfield saving (fixes #2670)

This commit is contained in:
Bernd Bestel 2025-02-06 20:09:19 +01:00
parent ebcc9a422e
commit b7c4011e80
No known key found for this signature in database
GPG Key ID: 71BD34C0D4891300
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@
### Userfields
- xxx
- Fixed that saving Userfields of type "Link (with title)" did not work
### General

View File

@ -384,7 +384,7 @@ $(".userfield-link").keyup(function(e)
"link": link
};
formRow.find(".userfield-input").val(JSON.stringify(value));
formRow.find(".userfield-input").val(JSON.stringify(value)).addClass("is-dirty");
});
$(".userfield-input").change(function(e)