Skip to content

Commit e73ebc7

Browse files
committed
feat: increase maximum length for content fields in SiteSnippetResource
1 parent 0dfa384 commit e73ebc7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Resources/SiteSnippetResource.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ public static function form(Form $form): Form
5454
Forms\Components\Textarea::make($contentFieldName)
5555
->label('Content (Plain Text)')
5656
->required()
57-
->maxLength(255)
57+
->maxLength(65535)
5858
->autosize(),
5959
];
6060
case 'html':
6161
return [
6262
Forms\Components\RichEditor::make($contentFieldName)
6363
->label('Content (HTML)')
64-
->maxLength(255)
64+
->maxLength(65535)
6565
->required(),
6666
];
6767
case 'image':

0 commit comments

Comments
 (0)