diff --git a/extensions/tmtv/src/Panels/PanelROIThresholdSegmentation/ROIThresholdConfiguration.tsx b/extensions/tmtv/src/Panels/PanelROIThresholdSegmentation/ROIThresholdConfiguration.tsx index 1f650b1c2..c03750013 100644 --- a/extensions/tmtv/src/Panels/PanelROIThresholdSegmentation/ROIThresholdConfiguration.tsx +++ b/extensions/tmtv/src/Panels/PanelROIThresholdSegmentation/ROIThresholdConfiguration.tsx @@ -1,5 +1,14 @@ import React from 'react'; -import { Input, Label, Select, LegacyButton, LegacyButtonGroup } from '@ohif/ui'; +import { + Select, + SelectContent, + SelectItem, + SelectTrigger, + SelectValue, + Label, + Input, + Button, +} from '@ohif/ui-next'; import { useTranslation } from 'react-i18next'; export const ROI_STAT = 'roi_stat'; @@ -14,17 +23,15 @@ function ROIThresholdConfiguration({ config, dispatch, runCommand }) { const { t } = useTranslation('ROIThresholdConfiguration'); return ( -
| - - | -||
| - - | -
-
- {
- dispatch({
- type: 'setThreshold',
- payload: {
- ctLower: e.target.value,
- },
- });
- }}
- />
- {
- dispatch({
- type: 'setThreshold',
- payload: {
- ctUpper: e.target.value,
- },
- });
- }}
- />
-
- |
- |
| - - | -
-
- {
- dispatch({
- type: 'setThreshold',
- payload: {
- ptLower: e.target.value,
- },
- });
- }}
- />
- {
- dispatch({
- type: 'setThreshold',
- payload: {
- ptUpper: e.target.value,
- },
- });
- }}
- />
-
- |
- |