@@ -469,37 +469,50 @@ export default class TerraBrowseVariables extends TerraElement {
469469 < section class ="right-column ">
470470 ${ this . activeIndex !== undefined
471471 ? html `
472- < h4 >
473- Science Name:< br />
474- ${ variables [ this . activeIndex ] . dataFieldLongName }
475- </ h4 >
476- < p >
477- < label > < strong > Spatial Resolution:</ strong > </ label >
478- ${ variables [ this . activeIndex ]
479- . dataProductSpatialResolution }
480- </ p >
481- < p >
482- < label > < strong > Temporal Coverage:</ strong > </ label >
483- ${ variables [ this . activeIndex ]
484- . dataProductBeginDateTime }
485- –
486- ${ variables [ this . activeIndex ]
487- . dataProductEndDateTime }
488- </ p >
489- < p >
490- < label > < strong > Region Coverage:</ strong > </ label >
491- ${ variables [ this . activeIndex ] . dataProductWest } ,
492- ${ variables [ this . activeIndex ] . dataProductSouth } ,
493- ${ variables [ this . activeIndex ] . dataProductEast } ,
494- ${ variables [ this . activeIndex ] . dataProductNorth }
495- </ p >
496- < p >
497- < label > < strong > Dataset:</ strong > </ label >
498- ${ variables [ this . activeIndex ]
499- . dataProductShortName } _${ variables [
500- this . activeIndex
501- ] . dataProductVersion }
502- </ p >
472+ < div class ="sticky-element ">
473+ < p >
474+ < label
475+ > < strong > Name in Data File:</ strong > </ label
476+ >
477+ ${ variables [ this . activeIndex ]
478+ . dataFieldShortName }
479+ </ p >
480+ < p >
481+ < label > < strong > Units:</ strong > </ label >
482+ ${ variables [ this . activeIndex ] . dataFieldUnits }
483+ </ p >
484+ < p >
485+ < label
486+ > < strong > Temporal Coverage:</ strong > </ label
487+ >
488+ ${ variables [ this . activeIndex ]
489+ . dataProductBeginDateTime }
490+ –
491+ ${ variables [ this . activeIndex ]
492+ . dataProductEndDateTime }
493+ </ p >
494+ < p >
495+ < label > < strong > Region Coverage:</ strong > </ label >
496+ ${ variables [ this . activeIndex ] . dataProductWest } ,
497+ ${ variables [ this . activeIndex ] . dataProductSouth } ,
498+ ${ variables [ this . activeIndex ] . dataProductEast } ,
499+ ${ variables [ this . activeIndex ] . dataProductNorth }
500+ </ p >
501+ < p >
502+ < label
503+ > < strong > Spatial Resolution:</ strong > </ label
504+ >
505+ ${ variables [ this . activeIndex ]
506+ . dataProductSpatialResolution }
507+ </ p >
508+ < p >
509+ < label > < strong > Dataset:</ strong > </ label >
510+ ${ variables [ this . activeIndex ]
511+ . dataProductShortName } _${ variables [
512+ this . activeIndex
513+ ] . dataProductVersion }
514+ </ p >
515+ </ div >
503516 `
504517 : html `< p class ="placeholder ">
505518 Hover over a variable to see details
0 commit comments