Merge pull request 'removed file name text box from module list' (#1089) from ranjith-dev into master
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 15s

Reviewed-on: #1089
This commit was merged in pull request #1089.
This commit is contained in:
2026-09-24 09:20:00 +00:00

View File

@@ -38,15 +38,15 @@ class ModuleListResource extends Resource
Forms\Components\TextInput::make('filter_name') Forms\Components\TextInput::make('filter_name')
->label('Filter Name') ->label('Filter Name')
->required(), ->required(),
Forms\Components\TextInput::make('file_name') // Forms\Components\TextInput::make('file_name')
->label('File Name') // ->label('File Name')
->required() // ->required()
->reactive() // ->reactive()
->extraAttributes([ // ->extraAttributes([
'x-data' => '{ value: "" }', // 'x-data' => '{ value: "" }',
'x-model' => 'value', // 'x-model' => 'value',
'x-on:keydown.enter.prevent' => '$wire.process(value)', // 'x-on:keydown.enter.prevent' => '$wire.process(value)',
]), // ]),
Forms\Components\Hidden::make('created_by') Forms\Components\Hidden::make('created_by')
->label('Created By') ->label('Created By')
->default(Filament::auth()->user()?->name), ->default(Filament::auth()->user()?->name),