From 67183e456eebfb87d27baa6b6a368a0fcd88906f Mon Sep 17 00:00:00 2001 From: Luis Mendoza Date: Thu, 19 Feb 2026 13:49:57 +0000 Subject: [PATCH] style: fix prettier formatting in ControlInt.eval_expression --- frappe/public/js/frappe/form/controls/int.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/controls/int.js b/frappe/public/js/frappe/form/controls/int.js index 706aa677b9..d612db40ae 100644 --- a/frappe/public/js/frappe/form/controls/int.js +++ b/frappe/public/js/frappe/form/controls/int.js @@ -15,7 +15,9 @@ frappe.ui.form.ControlInt = class ControlInt extends frappe.ui.form.ControlData return this.parse(value); } eval_expression(value, number_format) { - return typeof value === "string" ? frappe.utils.eval_expression(value, number_format) : value; + return typeof value === "string" + ? frappe.utils.eval_expression(value, number_format) + : value; } parse(value) { return cint(this.eval_expression(value), null);