Skip to content

Commit

Permalink
Merge branch 'develop' into dependency_updates
Browse files Browse the repository at this point in the history
  • Loading branch information
arnfinn authored Feb 28, 2025
2 parents f3b0e19 + aac6df5 commit fc65e85
Show file tree
Hide file tree
Showing 21 changed files with 1,872 additions and 1,300 deletions.
14 changes: 14 additions & 0 deletions apps/skde/pages/sykehusprofil/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import { UnitFilterMenu } from "../../src/components/HospitalProfile/UnitFilterM
import { TurnDeviceBox } from "../../src/components/HospitalProfile/TurnDeviceBox";
import { URLs } from "types";
import { LayoutHead } from "../../src/components/LayoutHead";
import { SelectedIndicatorTable } from "../../src/components/HospitalProfile/SelectedIndicatorTable";

export const Skde = (): JSX.Element => {
// States
Expand Down Expand Up @@ -215,6 +216,19 @@ export const Skde = (): JSX.Element => {
)}
</Grid>

<Grid size={{ xs: 12 }}>
{showRotateMessage ? (
TurnDeviceMessage
) : (
<SelectedIndicatorTable
unitName={unitName}
titlePadding={titlePadding}
titleStyle={titleStyle}
lastYear={lastYear}
/>
)}
</Grid>

<Grid size={{ xs: 12 }}>
{showRotateMessage ? (
TurnDeviceMessage
Expand Down
19 changes: 11 additions & 8 deletions apps/skde/src/components/Atlas/AtlasLayout/AtlasLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { LayoutHead } from "../../LayoutHead";
import { Header } from "./Header";
import { Footer } from "../../Footer";
import { PageWrapper } from "../../StyledComponents/PageWrapper";
import { Box } from "@mui/material";

interface Props {
children: React.ReactNode;
Expand All @@ -12,14 +13,16 @@ interface Props {
export function AtlasLayout({ children, lang }: Props) {
return (
<PageWrapper>
<LayoutHead
title="Helseatlas"
content="The healthcare atlases on Helseatlas.no are a tool for comparing the population's use of health services in different geographical areas, regardless of where the patients actually receive treatment."
href="/helseatlas/img/logos/favicon.ico"
/>
<Header lang={lang} />
{children}
<Footer page="helseatlas" maxWidth={"xxl"} />
<Box sx={{ backgroundColor: "white" }}>
<LayoutHead
title="Helseatlas"
content="The healthcare atlases on Helseatlas.no are a tool for comparing the population's use of health services in different geographical areas, regardless of where the patients actually receive treatment."
href="/helseatlas/img/logos/favicon.ico"
/>
<Header lang={lang} />
{children}
<Footer page="helseatlas" maxWidth={"xxl"} />
</Box>
</PageWrapper>
);
}
19 changes: 0 additions & 19 deletions apps/skde/src/components/Atlas/TopBanner/TopBanner.module.css

This file was deleted.

Loading

0 comments on commit fc65e85

Please sign in to comment.