From 45e143578c999731a477a806c1a2d2cac9d9f727 Mon Sep 17 00:00:00 2001 From: Dave Date: Mon, 2 Feb 2026 12:34:54 -0500 Subject: [PATCH] bugfix/IO-3533 - Disable on blurr and on focus handlers in bill entry modal --- .../components/bill-form/bill-form.lines.component.jsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/client/src/components/bill-form/bill-form.lines.component.jsx b/client/src/components/bill-form/bill-form.lines.component.jsx index d1fb03369..3d8967348 100644 --- a/client/src/components/bill-form/bill-form.lines.component.jsx +++ b/client/src/components/bill-form/bill-form.lines.component.jsx @@ -251,7 +251,8 @@ export function BillEnterModalLinesComponent({ autofillActualCost(index)} + // TODO: Removed at customers request + // onBlur={() => autofillActualCost(index)} onKeyDown={(e) => { if (e.key === "Tab") autofillActualCost(index); }} @@ -329,7 +330,10 @@ export function BillEnterModalLinesComponent({ disabled={disabled} controls={false} style={{ width: "100%", height: CONTROL_HEIGHT }} - onFocus={() => autofillActualCost(index)} + // TODO: Removed at customers request + // NOTE: onFocus autofill behavior disabled per user request (revert to tab-only behavior) + // This can be re-enabled as a user preference in the future + // onFocus={() => autofillActualCost(index)} />