This commit is contained in:
Rizky 2024-07-12 09:08:26 -07:00
parent 14436ead89
commit f3fb37fcec
2 changed files with 3 additions and 4 deletions

View File

@ -102,15 +102,14 @@ export const MasterDetail: FC<MDProps> = (arg) => {
"c-flex-1 c-flex-col c-flex c-w-full c-h-full" "c-flex-1 c-flex-col c-flex c-w-full c-h-full"
)} )}
> >
asidnoas makaro rakundo {md.props.show_head === "always" && <MDHeader md={md} mdr={mdr} />}
{/* {md.props.show_head === "always" && <MDHeader md={md} mdr={mdr} />}
{md.status === "ready" && ( {md.status === "ready" && (
<> <>
{md.props.mode === "full" && <ModeFull md={md} mdr={mdr} />} {md.props.mode === "full" && <ModeFull md={md} mdr={mdr} />}
{md.props.mode === "v-split" && <ModeVSplit md={md} mdr={mdr} />} {md.props.mode === "v-split" && <ModeVSplit md={md} mdr={mdr} />}
{md.props.mode === "h-split" && <ModeHSplit md={md} mdr={mdr} />} {md.props.mode === "h-split" && <ModeHSplit md={md} mdr={mdr} />}
</> </>
)} */} )}
</div> </div>
); );
}; };