diff --git a/backend/templates/main_admin.html b/backend/templates/main_admin.html
index ac98b48..4649063 100644
--- a/backend/templates/main_admin.html
+++ b/backend/templates/main_admin.html
@@ -187,15 +187,16 @@
function TableActions(value, row, index) {
let outerHTML = ""
if (row.Transferred == 1) {
- outerHTML = " ";
+ outerHTML = " ";
} else {
- outerHTML = " ";
+ outerHTML = " ";
}
return outerHTML;
}
function CopyFormatter(value, row, index) {
- return ""+value+"";
+ let escapedString = value.replace("\"","\\\"").replace("\'", "\\\'")
+ return ""+value+"";
}
function getIdSelections() {