diff --git a/app/components/behandlinger-table/BehandlingerTable.tsx b/app/components/behandlinger-table/BehandlingerTable.tsx index 1ee38bb..1c8f34b 100644 --- a/app/components/behandlinger-table/BehandlingerTable.tsx +++ b/app/components/behandlinger-table/BehandlingerTable.tsx @@ -11,7 +11,7 @@ interface Props { behandlingerResponse: BehandlingerPage, } -export default function BehandlingerTable(props: Props) { +export default function BehandlingerTable({visStatusSoek, visBehandlingTypeSoek = true, behandlingerResponse}: Props) { const [searchParams, setSearchParams] = useSearchParams() let sortParam = searchParams.get("sort")?.split(",") @@ -63,7 +63,7 @@ export default function BehandlingerTable(props: Props) { function behandlingtypeOptions() { let ekstraBehandlingType let currentBehandlingType = searchParams.get('behandlingType') - if (currentBehandlingType && !props.behandlingerResponse.behandlingTyper.includes(currentBehandlingType)) { + if (currentBehandlingType && !behandlingerResponse.behandlingTyper.includes(currentBehandlingType)) { ekstraBehandlingType = () } else { ekstraBehandlingType = (<>>) @@ -85,8 +85,8 @@ export default function BehandlingerTable(props: Props) { ekstraBehandlingType } - { props.behandlingerResponse.behandlingTyper ? - props.behandlingerResponse.behandlingTyper.sort((a,b) => a.localeCompare(b)).map((type) => { + { behandlingerResponse.behandlingTyper ? + behandlingerResponse.behandlingTyper.sort((a,b) => a.localeCompare(b)).map((type) => { return () }) : <>> @@ -137,7 +137,7 @@ export default function BehandlingerTable(props: Props) {