Skip to content

Commit

Permalink
Adds missing hyperlink to fileset
Browse files Browse the repository at this point in the history
  • Loading branch information
fbergkemper committed May 12, 2016
1 parent aea9933 commit 3d43771
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion module/Client/view/client/client/details.phtml
Expand Up @@ -155,7 +155,7 @@ $(document).ready(function() {
"columns" : [
{ "data": "jobid" },
{ "data": "starttime" },
{ "data": "fileset" },
{ "data": null },
{ "data": "level" },
{ "data": "jobfiles" },
{ "data": "jobbytes", "type": "file-size" },
Expand All @@ -174,6 +174,12 @@ $(document).ready(function() {
return '<a href="<?php echo $this->basePath() . '/job/details/'; ?>'+data+'">'+data+'</a>';
}
},
{
"targets": 2,
"render": function(data, type, full, meta) {
return '<a href="<?php echo $this->basePath(). '/fileset/details/'; ?>'+data.filesetid+'">'+data.fileset+'</a>';
}
},
{
"targets": 3,
"render": function(data, type, full, meta) {
Expand Down

0 comments on commit 3d43771

Please sign in to comment.