diff --git a/static-site/content/resource-listing.yaml b/static-site/content/resource-listing.yaml index 0cebf9d4b..e31c85f95 100644 --- a/static-site/content/resource-listing.yaml +++ b/static-site/content/resource-listing.yaml @@ -55,6 +55,7 @@ coreGroupDisplayNames: # Tiles must define a filter query which is a list of dataset name "words" # (where words are joined by "/" to form the URL path) as well as a PNG image # which is relative to static-site/static/pathogen_images. +# These will be displayed in alphabetical order by name. coreTiles: - name: SARS-CoV-2 img: ncov_freq.png diff --git a/static-site/src/components/ListResources/index.tsx b/static-site/src/components/ListResources/index.tsx index 33bb52ddb..d59bda466 100644 --- a/static-site/src/components/ListResources/index.tsx +++ b/static-site/src/components/ListResources/index.tsx @@ -83,7 +83,12 @@ function ListResources({ - + a.name.localeCompare(b.name))} + tileWidth={tileWidthHeight} + tileHeight={tileWidthHeight} + TileComponent={Tile} + /> )}