Skip to content

List proc data in search #1039

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix data retrieval for rendering
  • Loading branch information
squirrelo committed Apr 9, 2015
commit dba9942b1af15c97d550efd7cbf0f02d726f942b
2 changes: 1 addition & 1 deletion qiita_pet/templates/list_studies.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
{"render": function ( data, type, row, meta ) {
var glyph = 'remove';
if(data === true) { glyph = 'ok' }
return "<span id='shared_html_"+ data.study_id +"'>"+ data +"</span><br/><a class='btn btn-primary btn-xs' data-toggle='modal' data-target='#share-study-modal-view' onclick='modify_sharing("+ data.study_id +");'>Modify</a>";
return "<span id='shared_html_"+ row.study_id +"'>"+ data +"</span><br/><a class='btn btn-primary btn-xs' data-toggle='modal' data-target='#share-study-modal-view' onclick='modify_sharing("+ row.study_id +");'>Modify</a>";
}, targets: [7]},
],
"oLanguage": {
Expand Down