Merge pull request #32315 from sokumon/link-field-trigger

fix(link): dont force set value in model
This commit is contained in:
Soham Kulkarni 2025-04-29 14:59:49 +05:30 committed by GitHub
commit 87c67c8dbe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -134,7 +134,7 @@ frappe.ui.form.ControlLink = class ControlLink extends frappe.ui.form.ControlDat
frappe.utils.add_link_title(this.df.options, value, label);
}
return this.validate_and_set_in_model(value, e, true);
return this.validate_and_set_in_model(value, e);
}
parse(value) {
return strip_html(value);