update
This commit is contained in:
parent
e421bc7df9
commit
21a5d1bfc4
@ -243,6 +243,7 @@ const SegmentationPanel = ({
|
||||
labelMapList: [],
|
||||
segmentList: [],
|
||||
isDisabled: true,
|
||||
selectedSegmentation: -1,
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@ import Select from 'react-select';
|
||||
|
||||
const SegmentationSelect = ({ value, formatOptionLabel, options }) => (
|
||||
<Select
|
||||
value={value}
|
||||
value={value === undefined ? null : value}
|
||||
formatOptionLabel={formatOptionLabel}
|
||||
styles={segmentationSelectStyles}
|
||||
options={options}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user