minor change

This commit is contained in:
jaanvi 2025-04-09 16:16:31 +05:30
parent a90c9b643d
commit 769239b349

View file

@ -349,7 +349,9 @@ const EditStationModal: React.FC<EditStationModalProps> = ({
Select Vehicle Brands Select Vehicle Brands
</Typography> </Typography>
<FormControl fullWidth> <FormControl fullWidth>
<InputLabel>Choose Brand</InputLabel> {selectedBrands.length === 0 && (
<InputLabel>Choose Brand</InputLabel>
)}
<Select <Select
multiple multiple
sx={{ marginTop: 1 }} sx={{ marginTop: 1 }}
@ -440,7 +442,9 @@ const EditStationModal: React.FC<EditStationModalProps> = ({
Vehicle Name Vehicle Name
</Typography> </Typography>
<FormControl fullWidth> <FormControl fullWidth>
<InputLabel>Choose Vehicles</InputLabel> {selectedVehicles.length === 0 && (
<InputLabel>Choose Vehicles</InputLabel>
)}
<Select <Select
multiple multiple
sx={{ marginTop: 1 }} sx={{ marginTop: 1 }}