From ec8bfc8296df37d2af61e653072622bb672a10ba Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Wed, 11 Mar 2026 15:09:17 +0530 Subject: [PATCH] Commented enter event logic in cycle count page --- app/Filament/Pages/CycleCount.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Filament/Pages/CycleCount.php b/app/Filament/Pages/CycleCount.php index 8753f43..84c373c 100644 --- a/app/Filament/Pages/CycleCount.php +++ b/app/Filament/Pages/CycleCount.php @@ -73,10 +73,10 @@ class CycleCount extends Page ->label('Location') ->reactive() ->required() - ->readOnly(fn (callable $get) => ! $get('plant_id')) - ->extraAttributes([ - 'wire:keydown.enter' => 'processLocation($event.target.value)', - ]), + ->readOnly(fn (callable $get) => ! $get('plant_id')), + // ->extraAttributes([ + // 'wire:keydown.enter' => 'processLocation($event.target.value)', + // ]), TextInput::make('bin') ->label('Bin') ->readOnly(fn (callable $get) => ! $get('plant_id') || ! $get('location'))