This commit is contained in:
Malini 2025-11-03 11:04:36 +05:30
parent 8705128a9e
commit 2749bd3911
2 changed files with 6 additions and 8 deletions

View File

@ -83,7 +83,7 @@ export const SurveyStatus = ({ data = null, loading = false, error = '' }) => {
: 'Complete your quarterly industrial production data submission';
return (
<section className="max-w-[1280px] mx-auto px-0">
<section className="max-w-[1340px] mx-auto px-0">
<div className="p-6">
{loading ? (
<div className="text-center text-gray-500 text-sm py-10">Loading survey status...</div>

View File

@ -698,17 +698,15 @@ const ProductData = ({
onChange={(e) => updateProductField(p.id, 'aprQuantity', e.target.value)}
/>
</div>
<div className="flex flex-col whitespace-nowrap">
<label className="block text-sm font-medium text-gray-700 mb-1 whitespace-nowrap">
May Cost (AED)<span className="text-red-600">*</span>
</label>
<div>
<label className="block text-sm font-medium text-gray-700 mb-1">May Qty<span className="text-red-600">*</span></label>
<Input
className="w-28" // Slightly wider input for balance
className="w-24"
type="number"
required
placeholder="Enter"
value={p.mayCost || ''}
onChange={(e) => updateProductField(p.id, 'mayCost', e.target.value)}
value={p.mayQuantity || ''}
onChange={(e) => updateProductField(p.id, 'mayQuantity', e.target.value)}
/>
</div>