Open Ladvace opened 5 months ago
<ProFormSelect
label='Application Type'
name='app_net_type'
fieldProps={{
loading: true,
labelInValue: true,
}}
/>
Steps to reproduce
<ProFormSelect disabled={!merchandiseSector} loading={subMerchandiseSectors.isLoading} options={apidata.data?.map((item) => ({ value: item.id, label: item.description, }))} />
What is expected?
to have a loading state
What is actually happening?
not having a loading state
PS: I figure out that it's missing a lot of things from the normal select, such as
labelInValue
and others, what's the purpose of ProFormSelect over a normal Select then? how can I use a select in aStepsForm.StepForm