Merge branch 'develop' into kanban-access-w-perms
This commit is contained in:
commit
70fac30e77
2 changed files with 1 additions and 3 deletions
|
|
@ -1113,8 +1113,6 @@ class Document(BaseDocument):
|
|||
if (self.doctype, self.name) in frappe.flags.currently_saving:
|
||||
frappe.flags.currently_saving.remove((self.doctype, self.name))
|
||||
|
||||
self.latest = None
|
||||
|
||||
def clear_cache(self):
|
||||
frappe.clear_document_cache(self.doctype, self.name)
|
||||
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ frappe.ui.form.ControlLink = class ControlLink extends frappe.ui.form.ControlDat
|
|||
return in_list(frappe.boot?.translated_doctypes || [], this.get_options());
|
||||
}
|
||||
is_title_link() {
|
||||
return in_list(frappe.boot.link_title_doctypes, this.get_options());
|
||||
return in_list(frappe.boot?.link_title_doctypes || [], this.get_options());
|
||||
}
|
||||
async set_link_title(value) {
|
||||
const doctype = this.get_options();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue