0

I can't find this functional in official documentation. Only what I can find is warning for entire form, like

<Form warning>
...
<Form.Group widths="equal">
    ...
<Form.Dropdown
    ...
/>
<Message
    warning
    header="Could you check something!"
    list={[
        "That e-mail has been subscribed, but you have not yet clicked the verification link in your e-mail."
    ]}
/>

But I need message only for Form.Dropdown.

I use

<Form.Group widths="equal">

to position multiple items on the same line, and if I write code like I show above in result I get Message which will be shown in line after Dropdown.

Me need Message element which will be shown below Dropdown.

bpGusar
  • 141
  • 1
  • 11

1 Answers1

0

I found answer.

<div className="field">
    <Form.Dropdown
        ...
    />
    <Message
        warning
        visible
        header="Could you check something!"
        list={[
        "That e-mail has been subscribed, but you have not yet clicked the verification link in your e-mail."
        ]}
    />
</div>

Use

<div className="field">...</div>

as wrapper.

bpGusar
  • 141
  • 1
  • 11