diff options
author | BonfaceKilz | 2022-05-19 12:56:04 +0300 |
---|---|---|
committer | BonfaceKilz | 2022-05-27 15:17:52 +0300 |
commit | fa053688716eaff5ce7f0f8524cd4ecb9878e86c (patch) | |
tree | b1fcf10f7b28a036599517a67da6cb4de81487ff | |
parent | cca83b1826dc84869f7ad985724ae034c4a0433d (diff) | |
download | genenetwork2-fa053688716eaff5ce7f0f8524cd4ecb9878e86c.tar.gz |
Put the correct class names when appending the name & desc. fields
-rw-r--r-- | wqflask/wqflask/templates/case_attributes.html | 4 |
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); |