Set default height of TinyMCE textarea to 600px in WYSIWYG component.
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
@endphp
|
||||
<div class="mb-3">
|
||||
<label for="{{ $tinyId }}">{{ $title }}</label>
|
||||
<textarea class="form-control {{ $attributes->get('class') }} textarea-tinymce @error($requestName) is-invalid @enderror" name="{{ $name }}" id="{{ $tinyId }}" rows="3">{{ $value }}</textarea>
|
||||
<textarea class="form-control {{ $attributes->get('class') }} textarea-tinymce @error($requestName) is-invalid @enderror" name="{{ $name }}" id="{{ $tinyId }}" style="height: 600px;">{{ $value }}</textarea>
|
||||
@foreach($images as $image)
|
||||
@continue( empty($image['file']) )
|
||||
<input type="hidden" value="{{ $image['file'] }}" name="{{ $storageUpload->getInputName() }}[content_images][][file]';">
|
||||
|
||||
Reference in New Issue
Block a user