style: Add missing semicolons

This commit is contained in:
Suraj Shetty 2021-08-20 10:23:49 +05:30
parent ff552d5d1d
commit ebcb3618cf

View file

@ -259,9 +259,9 @@ frappe.ui.form.Layout = class Layout {
}
is_numeric_field_active() {
const control = $(document.activeElement).closest(".frappe-control")
const control = $(document.activeElement).closest(".frappe-control");
const fieldtype = control.data().fieldtype;
return frappe.model.numeric_fieldtypes.includes(fieldtype)
return frappe.model.numeric_fieldtypes.includes(fieldtype);
}
refresh_sections() {