Skip to content

Commit 3eb5b7e

Browse files
fixing missed dataset
1 parent b2234ef commit 3eb5b7e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/prepare_summary_tables.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def wrap_dataset_name(name: str):
145145
}
146146
147147
// 2) Initialize DataTable with SearchPanes button
148-
const FILTER_COLS = [1,2,3,4,5,6];
148+
const FILTER_COLS = [1,2,3,4,5,6,7];
149149
// Detect the index of the size column by header text
150150
const sizeIdx = (function(){
151151
let idx = -1;
@@ -191,14 +191,14 @@ def wrap_dataset_name(name: str):
191191
192192
// 3) UX: click a header to open the relevant filter pane
193193
$table.find('thead th').each(function (i) {
194-
if ([1,2,3,4].indexOf(i) === -1) return;
194+
if ([1,2,3,4,5].indexOf(i) === -1) return;
195195
window.jQuery(this)
196196
.css('cursor','pointer')
197197
.attr('title','Click to filter this column')
198198
.on('click', function () {
199199
dataTable.button('.buttons-searchPanes').trigger();
200200
window.setTimeout(function () {
201-
const idx = [1,2,3,4].indexOf(i);
201+
const idx = [1,2,3,4,5].indexOf(i);
202202
const $container = window.jQuery(dataTable.searchPanes.container());
203203
const $pane = $container.find('.dtsp-pane').eq(idx);
204204
const $title = $pane.find('.dtsp-title');

eegdash/dataset/dataset_summary.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ Unnamed: 0,dataset,n_records,n_subjects,n_tasks,nchans_set,sampling_freqs,durati
217217
216,ds005555,256,128,1,"2,8,9,11,12,13",256,2002.592,33.45 GB,35921410419,0,,,,,,EEG
218218
217,ds004477,9,9,1,79,2048,13.557,22.34 GB,23990303639,0,ds004477,Healthy,10-20,Multisensory,Decision-making,EEG
219219
218,ds005688,89,20,5,4,"10000,20000",2.502,8.42 GB,9036021093,0,,,,,,EEG
220-
219,ds003766,124,31,4,129,1000,39.973,152.77 GB,164033759919,0,ds003766,Healthy,other,Visual,Decision-making,
220+
219,ds003766,124,31,4,129,1000,39.973,152.77 GB,164033759919,0,ds003766,Healthy,other,Visual,Decision-making,EEG
221221
220,ds005540,103,59,1,64,"1200,600",0.0,70.40 GB,75594345013,0,,,,,,"EEG, BEH"
222222
221,ds004152,21,21,1,31,1000,0.0,4.77 GB,5118976537,0,ds004152,Healthy,10-20,Multisensory,Learning,EEG
223223
222,ds003626,30,10,1,,,0.0,24.99 GB,26828585815,0,ds003626,Healthy,10-20,Visual,Motor,EEG

0 commit comments

Comments
 (0)