changed max length in invoice pending reason #200

Merged
jothi merged 1 commits from ranjith-dev into master 2026-01-20 05:13:57 +00:00

View File

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