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'))