Explorar el Código

chore: add missing semicolon

version-14
Saqib Ansari hace 3 años
padre
commit
8a882cf09a
Se han modificado 2 ficheros con 3 adiciones y 3 borrados
  1. +1
    -1
      cypress/integration/control_link.js
  2. +2
    -2
      frappe/public/js/frappe/utils/utils.js

+ 1
- 1
cypress/integration/control_link.js Ver fichero

@@ -111,7 +111,7 @@ context('Control Link', () => {
if (!frappe.boot) {
frappe.boot = {
link_title_doctypes: ['ToDo']
}
};
} else {
frappe.boot.link_title_doctypes = ['ToDo'];
}


+ 2
- 2
frappe/public/js/frappe/utils/utils.js Ver fichero

@@ -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);
}
}


Cargando…
Cancelar
Guardar