Added max length for remark for invoice pending reason page
This commit is contained in:
@@ -135,9 +135,11 @@ class InvoicePendingReason extends Page
|
|||||||
TextInput::make('remark')
|
TextInput::make('remark')
|
||||||
->label('Remark')
|
->label('Remark')
|
||||||
->reactive()
|
->reactive()
|
||||||
->extraAttributes([
|
->maxLength(20)
|
||||||
'wire:keydown.enter.prevent' => 'addRemark($event.target.value)',
|
->helperText('Max 20 characters allowed.')
|
||||||
])
|
->extraAttributes([
|
||||||
|
'wire:keydown.enter.prevent' => 'addRemark($event.target.value)',
|
||||||
|
])
|
||||||
->autofocus()
|
->autofocus()
|
||||||
->required(),
|
->required(),
|
||||||
])
|
])
|
||||||
|
|||||||
Reference in New Issue
Block a user