Skip to content
Snippets Groups Projects
Commit f89a3ddc authored by Piotr Gawron's avatar Piotr Gawron
Browse files

missing links added

parent 4b7979b2
No related branches found
No related tags found
2 merge requests!264Resolve "add support for matomo",!255Resolve "missing links"
Pipeline #95854 passed
......@@ -5,6 +5,7 @@ minerva-front (18.0.0~beta.5) stable; urgency=medium
in for format and submap (#295)
* Small improvements: dropdown sections in exporting map as image are
unfolded permanently (#296)
* Bugfix: missing links added (#299)
-- Piotr Gawron <piotr.gawron@uni.lu> Fri, 04 Oct 2024 13:00:00 +0200
......
......@@ -26,7 +26,7 @@ describe('NavBar - component', () => {
expect(screen.getByTestId('nav-buttons')).toBeInTheDocument();
expect(screen.getByTestId('nav-logos-and-powered-by')).toBeInTheDocument();
expect(screen.getByAltText('luxembourg logo')).toBeInTheDocument();
expect(screen.getByAltText('logo')).toBeInTheDocument();
expect(screen.getByAltText('University of Luxembourg logo')).toBeInTheDocument();
expect(screen.getByAltText('Minerva logo')).toBeInTheDocument();
});
});
......@@ -79,14 +79,18 @@ export const NavBar = (): JSX.Element => {
</div>
<div className="flex flex-col items-center gap-[20px]" data-testid="nav-logos-and-powered-by">
<Image
className="rounded rounded-e rounded-s bg-white-pearl pb-[7px]"
src={luxembourgLogoImg}
alt="luxembourg logo"
height={41}
width={48}
/>
<Image src={logoImg} alt="logo" height={48} width={48} />
<a href="https://www.uni.lu/en/" target="_blank">
<Image
className="rounded rounded-e rounded-s bg-white-pearl pb-[7px]"
src={luxembourgLogoImg}
alt="University of Luxembourg logo"
height={41}
width={48}
/>
</a>
<a href="https://minerva.uni.lu/" target="_blank">
<Image src={logoImg} alt="Minerva logo" height={48} width={48} />
</a>
<span className="h-16 w-14 text-center text-[8px] leading-4">
Powered by: MINERVA Platform{' '}
<a href={MINERVA_WEBSITE_URL} target="_blank">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment