1
0
forked from poc/pds

changed max length in invoice pending reason

This commit is contained in:
dhanabalan
2026-01-20 10:43:42 +05:30
parent e4b39c5b52
commit 88346b9ad8

View File

@@ -135,8 +135,8 @@ class InvoicePendingReason extends Page
TextInput::make('remark') TextInput::make('remark')
->label('Remark') ->label('Remark')
->reactive() ->reactive()
->maxLength(20) ->maxLength(40)
->helperText('Max 20 characters allowed.') ->helperText('Max 40 characters allowed.')
->extraAttributes([ ->extraAttributes([
'wire:keydown.enter.prevent' => 'addRemark($event.target.value)', 'wire:keydown.enter.prevent' => 'addRemark($event.target.value)',
]) ])