aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBonfaceKilz2022-05-06 10:53:22 +0300
committerBonfaceKilz2022-05-06 12:43:34 +0300
commit99c36b6fa90d987c18d62591115013ab18755cbe (patch)
tree51765c1d5a8d57e5fc10aad0d01684af8eb5e676
parent14eeac3caae731ede21b5eb0f3f7b4628a81cc26 (diff)
downloadgenenetwork2-99c36b6fa90d987c18d62591115013ab18755cbe.tar.gz
Shrink the rows of the "Volume" field to 1
-rw-r--r--wqflask/wqflask/templates/edit_phenotype.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/templates/edit_phenotype.html b/wqflask/wqflask/templates/edit_phenotype.html
index 6db8737e..b7c737eb 100644
--- a/wqflask/wqflask/templates/edit_phenotype.html
+++ b/wqflask/wqflask/templates/edit_phenotype.html
@@ -193,7 +193,7 @@
<div class="form-group">
<label for="volume" class="col-sm-3 col-lg-2 control-label text-left">Volume</label>
<div class="col-sm-7 col-lg-8">
- <textarea name="volume" class="form-control" rows="6">{{ publication.volume |default('', true) }}</textarea>
+ <textarea name="volume" class="form-control" rows="1">{{ publication.volume |default('', true) }}</textarea>
<input name="old_volume" class="changed" type="hidden" value="{{ publication.volume |default('', true) }}"/>
</div>
</div>