From e7db621fa700ec8749dddc183e75fa3b1bd7460e Mon Sep 17 00:00:00 2001
From: zsloan
Date: Tue, 2 Aug 2022 19:13:27 +0000
Subject: Remove unused parameters from gsearch_gene.html's column render
functions
---
wqflask/wqflask/templates/gsearch_gene.html | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/wqflask/wqflask/templates/gsearch_gene.html b/wqflask/wqflask/templates/gsearch_gene.html
index 36739ba3..39c46f02 100644
--- a/wqflask/wqflask/templates/gsearch_gene.html
+++ b/wqflask/wqflask/templates/gsearch_gene.html
@@ -84,7 +84,7 @@
'width': "5px",
'data': null,
'targets': 0,
- 'render': function(data, type, row, meta) {
+ 'render': function(data) {
return ''
}
},
@@ -102,7 +102,7 @@
'width': "60px",
'data': null,
'targets': 2,
- 'render': function(data, type, row, meta) {
+ 'render': function(data) {
return '' + data.name + ''
}
},
@@ -147,7 +147,7 @@
'data': null,
'width': "120px",
'targets': 8,
- 'render': function(data, type, row, meta) {
+ 'render': function(data) {
try {
return decodeURIComponent(escape(data.description))
} catch(err) {
--
cgit 1.4.1