chore: adjust ProjectFlockClosingForm styling

This commit is contained in:
ValdiANS
2026-02-06 09:45:38 +07:00
parent 980a5674e2
commit 6e2e9da1be
@@ -94,6 +94,7 @@ const ProjectFlockClosingForm = ({
return ( return (
<> <>
<section className='w-full h-full sm:w-[446px] overflow-y-auto'>
<DrawerHeader <DrawerHeader
leftIcon='mdi:arrow-left' leftIcon='mdi:arrow-left'
leftIconHref={`/production/project-flock/detail?projectFlockId=${projectFlock.id}`} leftIconHref={`/production/project-flock/detail?projectFlockId=${projectFlock.id}`}
@@ -158,11 +159,14 @@ const ProjectFlockClosingForm = ({
> >
<Icon width={14} height={14} icon='mdi:circle-slice-8' /> Kandang <Icon width={14} height={14} icon='mdi:circle-slice-8' /> Kandang
</div> </div>
<div className='col-span-2'>{projectFlockKandang.kandang?.name}</div> <div className='col-span-2'>
{projectFlockKandang.kandang?.name}
</div>
{/* Jumlah DOC */} {/* Jumlah DOC */}
<div className='col-span-1 flex flex-row items-center text-gray-400 font-semibold gap-2'> <div className='col-span-1 flex flex-row items-center text-gray-400 font-semibold gap-2'>
<Icon width={14} height={14} icon='mdi:circle-slice-8' /> Jumlah DOC <Icon width={14} height={14} icon='mdi:circle-slice-8' /> Jumlah
DOC
</div> </div>
<div className='col-span-2'> <div className='col-span-2'>
{formatNumber( {formatNumber(
@@ -318,6 +322,7 @@ const ProjectFlockClosingForm = ({
onClick: confirmationModalCloseClickHandler, onClick: confirmationModalCloseClickHandler,
}} }}
/> />
</section>
</> </>
); );
}; };