diff --git a/src/front/Components/DesignSystem/Select/index.tsx b/src/front/Components/DesignSystem/Select/index.tsx index 9a389c2d..72425ece 100644 --- a/src/front/Components/DesignSystem/Select/index.tsx +++ b/src/front/Components/DesignSystem/Select/index.tsx @@ -14,6 +14,7 @@ type IProps = { hasBorderRightCollapsed?: boolean; placeholder?: string; className?: string; + name?: string; }; export type IOption = { @@ -50,6 +51,7 @@ export default class Select extends React.Component { const selectedOption = this.state.selectedOption ?? this.props.selectedOption; return (
+ {selectedOption && }