mirror of
https://github.com/nextcloud/calendar.git
synced 2024-10-07 16:40:09 +02:00
In response to issue #675, this doubles the size of the text area input for the event description by increasing the text area to two rows.
This commit is contained in:
parent
f63145b220
commit
68d67a5f13
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@
|
|||
uib-typeahead="location.name for location in searchLocation($viewValue)" typeahead-show-hint="true" typeahead-min-length="3"
|
||||
typeahead-on-select="selectLocationFromTypeahead($item)"
|
||||
autocomplete="off" tabindex="210"></textarea>
|
||||
<textarea ng-model="properties.description.value" type="text" class="advanced--input advanced--textarea" rows="1"
|
||||
<textarea ng-model="properties.description.value" type="text" class="advanced--input advanced--textarea" rows="2"
|
||||
placeholder="<?php p($l->t('Description'));?>" name="description" tabindex="210"></textarea>
|
||||
<select id="statusSelector"
|
||||
ng-options="status.type as status.displayname for status in statusSelect"
|
||||
|
|
Loading…
Reference in a new issue