diff options
author | BonfaceKilz | 2021-06-01 17:09:31 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-06-01 17:09:31 +0300 |
commit | 271be90f028bf7027f7398251e989ab77f7a9499 (patch) | |
tree | 23534870c348673d789229e38db785ad0ad5c0bc /wqflask | |
parent | 23c9d5eef66f159c422b136be9a837b6700208a4 (diff) | |
download | genenetwork2-271be90f028bf7027f7398251e989ab77f7a9499.tar.gz |
templates: edit_trait: Use correct textarea "name" for post_pub_desc
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/templates/edit_trait.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/templates/edit_trait.html b/wqflask/wqflask/templates/edit_trait.html index 393b8c39..f01c497c 100644 --- a/wqflask/wqflask/templates/edit_trait.html +++ b/wqflask/wqflask/templates/edit_trait.html @@ -38,7 +38,7 @@ Submit Trait | Reset <div class="form-group"> <label for="post-pub-desc" class="col-sm-2 control-label">Post Publication Description:</label> <div class="col-sm-8"> - <textarea name="pre-pub-desc" class="form-control" rows="4">{{ phenotype.post_pub_description |default('', true) }}</textarea> + <textarea name="post-pub-desc" class="form-control" rows="4">{{ phenotype.post_pub_description |default('', true) }}</textarea> </div> </div> <div class="form-group"> |