diff --git a/CHANGELOG b/CHANGELOG index b564876dd2f74879328ac4068e4823e09f033257..eb0373fae239bcb69678fe9cded83dd2c938b10b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,6 @@ -minerva-front (18.0.0) stable; urgency=medium +minerva-front (18.0.1) stable; urgency=medium * Bug fix: show cookie baner only when cookie baner link is provided (#304) + * Bug fix: when link to submap is provided add submap name (#303) -- Piotr Gawron <piotr.gawron@uni.lu> Thu, 24 Oct 2024 13:00:00 +0200 diff --git a/src/components/Map/Drawer/BioEntityDrawer/AssociatedSubmap/AssociatedSubmap.component.tsx b/src/components/Map/Drawer/BioEntityDrawer/AssociatedSubmap/AssociatedSubmap.component.tsx index c14fbdd9a32d7b94b30633de79fcc71c688d7fb4..659ff1931abd873664b21b77246ef41e1eba86d2 100644 --- a/src/components/Map/Drawer/BioEntityDrawer/AssociatedSubmap/AssociatedSubmap.component.tsx +++ b/src/components/Map/Drawer/BioEntityDrawer/AssociatedSubmap/AssociatedSubmap.component.tsx @@ -19,7 +19,7 @@ export const AssociatedSubmap = (): React.ReactNode => { data-testid="associated-submap" className="flex flex-row flex-nowrap items-center justify-between" > - <p>Associated Submap: </p> + <p>Associated Submap: {relatedSubmap.name}</p> <Button className="max-h-8" variantStyles="ghost" onClick={openSubmap}> Open submap </Button>