Finish bridge generalization

This commit is contained in:
Darren Clarke 2024-04-26 15:49:58 +02:00
parent cb7a3a08dc
commit cca8d03988
93 changed files with 634 additions and 2085 deletions

View file

@ -29,7 +29,7 @@ export const Detail: FC<DetailProps> = ({ service, row }) => {
>
<Grid container direction="row" rowSpacing={3} columnSpacing={2}>
{fields.map((field) => (
<Grid item xs={6} key={field.name}>
<Grid item xs={field.size ?? 6} key={field.name}>
<DisplayTextField
name={field.name}
label={field.label}

View file

@ -3,11 +3,12 @@ import { serviceConfig } from "@/app/_lib/config";
import { Detail } from "./_components/Detail";
type Props = {
params: { service: string; segment: string[] };
params: { segment: string[] };
};
export default async function Page({ params: { service, segment } }: Props) {
const id = segment?.[0];
export default async function Page({ params: { segment } }: Props) {
const service = segment[0];
const id = segment?.[1];
if (!id) return null;