Skip to content

Commit

Permalink
[#1626] fix comment field resizing
Browse files Browse the repository at this point in the history
  • Loading branch information
Smol-An committed Jun 12, 2024
1 parent 965071d commit a69ecb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/components/comment/_form.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{{ html()->hidden('commentable_type')->value(get_class($model)) }}
{{ html()->hidden('commentable_id')->value($model->id) }}
<div class="form-floating">
{{ html()->textarea('content')->class('form-control h-100')->required() }}
{{ html()->textarea('content')->class('form-control')->attribute('style', 'height: 100%')->required() }}
<label for="content">{{ __('comment.enter_your_message') }}</label>
</div>
<div class="mt-3">
Expand Down

0 comments on commit a69ecb3

Please sign in to comment.