chore: add missing semicolon
This commit is contained in:
parent
abec0d8664
commit
8a882cf09a
2 changed files with 3 additions and 3 deletions
|
|
@ -111,7 +111,7 @@ context('Control Link', () => {
|
|||
if (!frappe.boot) {
|
||||
frappe.boot = {
|
||||
link_title_doctypes: ['ToDo']
|
||||
}
|
||||
};
|
||||
} else {
|
||||
frappe.boot.link_title_doctypes = ['ToDo'];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1449,8 +1449,8 @@ Object.assign(frappe.utils, {
|
|||
return title;
|
||||
});
|
||||
} catch (error) {
|
||||
console.log('Error while fetching link title.');
|
||||
console.log(error);
|
||||
console.log('Error while fetching link title.'); // eslint-disable-line
|
||||
console.log(error); // eslint-disable-line
|
||||
return Promise.resolve(name);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue