aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBonfaceKilz2022-05-19 12:56:04 +0300
committerBonfaceKilz2022-05-27 15:17:52 +0300
commitfa053688716eaff5ce7f0f8524cd4ecb9878e86c (patch)
treeb1fcf10f7b28a036599517a67da6cb4de81487ff
parentcca83b1826dc84869f7ad985724ae034c4a0433d (diff)
downloadgenenetwork2-fa053688716eaff5ce7f0f8524cd4ecb9878e86c.tar.gz
Put the correct class names when appending the name & desc. fields
-rw-r--r--wqflask/wqflask/templates/case_attributes.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/wqflask/wqflask/templates/case_attributes.html b/wqflask/wqflask/templates/case_attributes.html
index 756c3a68..fd36c781 100644
--- a/wqflask/wqflask/templates/case_attributes.html
+++ b/wqflask/wqflask/templates/case_attributes.html
@@ -177,8 +177,8 @@
$(this).attr("disabled", "disabled");
let index = $("table tbody tr:last-child").index();
let row = '<tr>' +
- '<td><input type="text" class="form-control" name="case-attribute"></td>' +
- '<td><input type="text" class="form-control" name="description"></td>' +
+ '<td class="name"><input type="text" class="form-control"></td>' +
+ '<td class="description"><input type="text" class="form-control"></td>' +
'<td>' + actions + '</td>' +
'</tr>';
$("table").append(row);