@@ -25,26 +25,26 @@ Registry.addMetadataField('contacts', {
2525Registry . addMetadataField ( 'osc:project' , {
2626 label : "Project" ,
2727 ext : "osc" ,
28- formatter : value => Helper . toLink ( `/stac-browser/#/projects/${ value } /collection.json` , value )
28+ formatter : value => Helper . toLink ( `/stac-browser/#/projects/${ value } /collection.json` , value , "" , "_self" )
2929} ) ;
3030
3131Registry . addMetadataField ( 'osc:themes' , {
3232 label : "Themes" ,
3333 ext : "osc" ,
3434 formatter : value =>
35- value . map ( theme => Helper . toLink ( `/stac-browser/#/themes/${ theme } /catalog.json` , theme ) ) . join ( ", " )
35+ value . map ( theme => Helper . toLink ( `/stac-browser/#/themes/${ theme } /catalog.json` , theme , "" , "_self" ) ) . join ( ", " )
3636} ) ;
3737
3838Registry . addMetadataField ( 'osc:variables' , {
3939 label : "Variables" ,
4040 ext : "osc" ,
4141 formatter : value =>
42- value . map ( variable => Helper . toLink ( `/stac-browser/#/variables/${ variable } /catalog.json` , variable ) ) . join ( ", " )
42+ value . map ( variable => Helper . toLink ( `/stac-browser/#/variables/${ variable } /catalog.json` , variable , "" , "_self" ) ) . join ( ", " )
4343} ) ;
4444
4545Registry . addMetadataField ( 'osc:missions' , {
4646 label : "Missions" ,
4747 ext : "osc" ,
4848 formatter : value =>
49- value . map ( mission => Helper . toLink ( `/stac-browser/#/eo-missions/${ mission } /catalog.json` , mission ) ) . join ( ", " )
49+ value . map ( mission => Helper . toLink ( `/stac-browser/#/eo-missions/${ mission } /catalog.json` , mission , "" , "_self" ) ) . join ( ", " )
5050} ) ;
0 commit comments