diff --git a/uploader/templates/phenotypes/view-dataset.html b/uploader/templates/phenotypes/view-dataset.html
index 3bb2586..fc84757 100644
--- a/uploader/templates/phenotypes/view-dataset.html
+++ b/uploader/templates/phenotypes/view-dataset.html
@@ -148,14 +148,36 @@
return `<a href="${url.toString()}" target="_blank">` +
`${pheno.InbredSetCode}_${pheno.xref_id}` +
`</a>`;
- }
+ },
+ title: "Record",
+ visible: true,
+ searchable: true
},
{
data: function(pheno) {
return (pheno.Post_publication_description ||
pheno.Original_description ||
pheno.Pre_publication_description);
- }
+ },
+ title: "Description",
+ visible: true,
+ searchable: true
+ },
+ {
+ data: function(pheno) {
+ return pheno.publication.Title;
+ },
+ title: "Publication Title",
+ visible: false,
+ searchable: true
+ },
+ {
+ data: function(pheno) {
+ return pheno.publication.Authors;
+ },
+ title: "Authors",
+ visible: false,
+ searchable: true
}
],
{
|