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

Merge branch '299-missing-links' into 'main'

Resolve "missing links"

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