diff --git a/src/components/item-collection.tsx b/src/components/item-collection.tsx index cbb9948..feaef71 100644 --- a/src/components/item-collection.tsx +++ b/src/components/item-collection.tsx @@ -24,7 +24,12 @@ export default function ItemCollection({ return ( - + + {itemCollection.features.length > 0 && + itemCollection.features.length + + " item" + + (itemCollection.features.length > 1 ? "s" : "")} + {isStacGeoparquet && ((stacGeoparquetMetadata && ( - {thumbnailAsset && } + + {thumbnailAsset && } - {!!value.description && ( - - {value.description as string} - - )} + {!!value.description && ( + + {value.description as string} + + )} - {children} + {children} - {selfHref && } + {selfHref && } + ); }