Skip to content

Commit

Permalink
fix spelling, Textarea
Browse files Browse the repository at this point in the history
  • Loading branch information
kiiskila-bcgov committed Oct 1, 2024
1 parent 081053f commit 285d59a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/Filament/Forms/Resources/FormVersionResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use Filament\Forms\Components\Repeater;
use Filament\Forms\Components\Select;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Components\TextArea;
use Filament\Forms\Components\Textarea;
use Filament\Forms\Components\Fieldset;
use Filament\Forms\Components\DateTimePicker;

Expand Down Expand Up @@ -62,7 +62,7 @@ public static function form(Form $form): Form
->email(),
])
->label('Approver Information'),
TextArea::make('comments')
Textarea::make('comments')
->label('Comments')
->maxLength(500),
Select::make('deployed_to')
Expand Down Expand Up @@ -121,10 +121,10 @@ public static function form(Form $form): Form
TextInput::make('error_message')
->label('Error Message'),
]),
TextArea::make('conditional_logic')
Textarea::make('conditional_logic')
->label("Custom Conditional Logic")
->placeholder(fn($get) => \App\Models\FormField::find($get('form_field_id'))->conditional_logic ?? null),
TextArea::make('styles')
Textarea::make('styles')
->label("Custom Styles")
->placeholder(fn($get) => \App\Models\FormField::find($get('form_field_id'))->styles ?? null),
])
Expand All @@ -145,7 +145,7 @@ public static function form(Form $form): Form
->openUrlInNewTab()
->disabled(fn(Forms\Get $get) => empty($get('generated_text'))),
]),
TextArea::make('generated_text')
Textarea::make('generated_text')
->label('Generated Form Template')
->columnSpan(2)
->rows(15),
Expand Down

0 comments on commit 285d59a

Please sign in to comment.