diff --git a/web/src/components/MultiList/MultiList.tsx b/web/src/components/MultiList/MultiList.tsx index 7783fa247..2a9686bc4 100644 --- a/web/src/components/MultiList/MultiList.tsx +++ b/web/src/components/MultiList/MultiList.tsx @@ -18,12 +18,19 @@ interface MultiListProps { readOnly?: boolean } +/* Allows user to create following structure: +: + - , + - , + ... + */ export const MultiList = ({ name, label, readOnly, formik }: MultiListConnectedProps): JSX.Element => { const { getString } = useStrings() const [valueMap, setValueMap] = useState>(new Map([])) /* : , - : + : , + ... */ const counter = useRef(0)