Difference between 'multiple' and 'tags' mode in Antd Select

Viewed 1838

What is the difference between the 2 modes multiple and tags in Antd Select? I tried both and they look the same to me.

<Select mode="tags" {...}>
  {children}
</Select>
<Select mode="multiple" {...}>
  {children}
</Select>
1 Answers

It seems like there is no difference except that you can create new options in tags mode (by pressing Enter if the value in the input field does not exist). You can't extend the options like that using multiple mode.

Related