File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -480,10 +480,14 @@ <h2 id="panel-model-name" class="text-lg font-semibold text-gray-900">Model Resu
480480 const statusFilter = document . getElementById ( 'panel-filter-status' ) . value ;
481481 const repoFilter = document . getElementById ( 'panel-filter-repo' ) . value ;
482482
483- // Filter tasks that have results for this model
483+ // Filter tasks that have results for this model AND have trajectory files
484484 let tasks = coopIndex . tasks . filter ( task => {
485485 if ( ! task . results [ currentModelKey ] ) return false ;
486486
487+ // Only show tasks with trajectory files
488+ const hasTrajectory = task . hasTrajectory && task . hasTrajectory [ currentModelKey ] ;
489+ if ( ! hasTrajectory ) return false ;
490+
487491 const result = task . results [ currentModelKey ] ;
488492
489493 // Apply filters
You can’t perform that action at this time.
0 commit comments