Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix heights
  • Loading branch information
jbrooksuk committed Aug 15, 2025
commit 1b2a8557c3b3436d3403e3c7d6acab7dd07f0a0c
4 changes: 2 additions & 2 deletions src/Filament/Resources/IncidentResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ public static function table(Table $table): Table
Forms\Components\MarkdownEditor::make('message')
->label(__('cachet::incident.record_update.form.message_label'))
->required()
->minHeight(200)
->maxHeight(400)
->minHeight('200px')
->maxHeight('300px')
->columnSpanFull(),
Forms\Components\ToggleButtons::make('status')
->label(__('cachet::incident.record_update.form.status_label'))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public function form(Form $form): Form
Forms\Components\MarkdownEditor::make('message')
->label(__('Message'))
->required()
->minHeight(200)
->maxHeight(400)
->minHeight('200px')
->maxHeight('300px')
->columnSpanFull(),
Forms\Components\Select::make('user_id')
->label(__('User'))
Expand Down