From 53d41bea782fae137ade94acca4c3c40b4695b4d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Christian=20B=C3=B6ttcher?= <c.boettcher@fz-juelich.de>
Date: Wed, 16 Aug 2023 14:14:11 +0200
Subject: [PATCH] move button to right place in html

---
 frontend/js/apicalls.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frontend/js/apicalls.js b/frontend/js/apicalls.js
index 2ff84ce..96a764a 100644
--- a/frontend/js/apicalls.js
+++ b/frontend/js/apicalls.js
@@ -88,7 +88,7 @@ function getTypeHTMLString(name) {
 // get tableentry-html for a dataset
 function getDatasetHTMLString(dataset) {
     var safename = escapeHtml(dataset[0]);
-    return '<tr><th scope="row">'+ safename + '</th><td><a href="?type=' + getType() + "&oid=" + dataset[1] + '">' + dataset[1] + '</a></td><input class="form-check-input bulk-delete-checkboxes" type="checkbox" value="" id="' + dataset[1] + '"><td></td></tr>' // TODO add a checkbx that "knows" the oid somehow
+    return '<tr><th scope="row">'+ safename + '</th><td><a href="?type=' + getType() + "&oid=" + dataset[1] + '">' + dataset[1] + '</a></td><td><input class="form-check-input bulk-delete-checkboxes" type="checkbox" value="" id="' + dataset[1] + '"></td></tr>' // TODO add a checkbx that "knows" the oid somehow
 }
 
 /*
-- 
GitLab