File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1- import { DetailTemplate } from "@maykin-ui/admin-ui" ;
1+ import { DetailTemplate , Sidebar } from "@maykin-ui/admin-ui" ;
22import { useLoaderData } from "react-router" ;
33import { ZaaktypeLoaderData } from "~/pages" ;
44import { ZaakType } from "~/types" ;
@@ -11,11 +11,16 @@ export function ZaaktypePage() {
1111
1212 return (
1313 < DetailTemplate < ZaakType >
14+ cardProps = { {
15+ direction : "row" ,
16+ } }
1417 attributeGridProps = { {
1518 title : object . identificatie ,
1619 fieldsets,
1720 object : object ,
1821 } }
19- />
22+ >
23+ < Sidebar expandable = { false } />
24+ </ DetailTemplate >
2025 ) ;
2126}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export const ZAAKTYPE_FIELDSETS: FieldSet<ZaakType>[] = [
88 fields : [
99 "identificatie" ,
1010 "omschrijving" ,
11- "broncatalogus" ,
11+ // "broncatalogus",
1212 "verantwoordelijke" ,
1313 ] ,
1414 title : "identificatie" ,
Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ export function ListView<
8080 ...row ,
8181 href : `${ pathname } /${ row . identificatie } ` ,
8282 } ) ) ,
83+ decorate : true ,
8384 fieldsSelectable : true ,
8485 filterable : true ,
8586 height : "fill-available-space" ,
You can’t perform that action at this time.
0 commit comments