File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
UpdateResource/RelationManagers Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,10 @@ public static function table(Table $table): Table
168
168
->form ([
169
169
Forms \Components \MarkdownEditor::make ('message ' )
170
170
->label (__ ('cachet::incident.record_update.form.message_label ' ))
171
- ->required (),
171
+ ->required ()
172
+ ->minHeight ('200px ' )
173
+ ->maxHeight ('300px ' )
174
+ ->columnSpanFull (),
172
175
Forms \Components \ToggleButtons::make ('status ' )
173
176
->label (__ ('cachet::incident.record_update.form.status_label ' ))
174
177
->options (IncidentStatusEnum::class)
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ public function form(Form $form): Form
20
20
Forms \Components \MarkdownEditor::make ('message ' )
21
21
->label (__ ('Message ' ))
22
22
->required ()
23
+ ->minHeight ('200px ' )
24
+ ->maxHeight ('300px ' )
23
25
->columnSpanFull (),
24
26
Forms \Components \Select::make ('user_id ' )
25
27
->label (__ ('User ' ))
You can’t perform that action at this time.
0 commit comments