Skip to content

Commit 48e4f15

Browse files
committed
add text for empty add cell
1 parent 7ed5b1f commit 48e4f15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qiita_pet/templates/list_studies.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@
9191
// render the study checkbox cell
9292
{"render": function ( data, type, row, meta ) {
9393
if(row.proc_data_info.length > 0) {
94-
return "<input type='button' id='study"+row.study_id+"-checkbox' class='btn btn-sm' value='Add' onclick='sel_study("+ meta.row +")'>";
94+
return "<input type='button' id='study"+row.study_id+"-checkbox' class='btn btn-sm' value='Add to Analysis' onclick='sel_study("+ meta.row +")'>";
9595
}
96-
else { return ''; }
96+
else { return '<p style="font-size:12px">No Processed Data</p>'; }
9797
}, targets: [1]},
9898
// render the title cell
9999
{"render": function ( data, type, row, meta ) {

0 commit comments

Comments
 (0)