Optimized textarea heights

This commit is contained in:
Bernd Bestel
2020-12-27 09:38:31 +01:00
parent 447b86b27f
commit 6fcc0636e8
2 changed files with 2 additions and 2 deletions

View File

@@ -79,7 +79,7 @@
<div class="form-group">
<label for="note">{{ $__t('Note') }}</label>
<textarea class="form-control"
rows="2"
rows="10"
id="note"
name="note">@if($mode == 'edit'){{ $listItem->note }}@endif</textarea>
</div>

View File

@@ -46,7 +46,7 @@
<div class="form-group">
<label for="description">{{ $__t('Description') }}</label>
<textarea class="form-control"
rows="2"
rows="4"
id="description"
name="description">@if($mode == 'edit'){{ $task->description }}@endif</textarea>
</div>