fix
This commit is contained in:
parent
8705128a9e
commit
2749bd3911
@ -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>
|
||||
|
||||
@ -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>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user