diff --git a/src/components/floor-plan/modal/basic/step/Orientation.jsx b/src/components/floor-plan/modal/basic/step/Orientation.jsx index 6359163f..7a1fb6b1 100644 --- a/src/components/floor-plan/modal/basic/step/Orientation.jsx +++ b/src/components/floor-plan/modal/basic/step/Orientation.jsx @@ -10,6 +10,7 @@ import { useModuleBasicSetting } from '@/hooks/module/useModuleBasicSetting' import { useCommonCode } from '@/hooks/common/useCommonCode' import Swal from 'sweetalert2' import { normalizeDecimal} from '@/util/input-utils' +import { CalculatorInput } from '@/components/common/input/CalcInput' export const Orientation = forwardRef((props, ref) => { const { getMessage } = useMessage() @@ -561,11 +562,23 @@ export const Orientation = forwardRef((props, ref) => {
{getMessage('modal.module.basic.setting.module.fitting.height')}
- handleChangeInstallHeight(normalizeDecimal(e.target.value))}*/} + {/*/>*/} + handleChangeInstallHeight(normalizeDecimal(e.target.value))} + onChange={(value) => handleChangeInstallHeight(value)} + options={{ + allowNegative: false, + allowDecimal: false + }} />
m @@ -589,11 +602,23 @@ export const Orientation = forwardRef((props, ref) => {
{getMessage('modal.module.basic.setting.module.standard.snowfall.amount')}
- handleChangeVerticalSnowCover(normalizeDecimal(e.target.value))}*/} + {/*/>*/} + handleChangeVerticalSnowCover(normalizeDecimal(e.target.value))} + value={inputInstallHeight} + onChange={(value) => handleChangeVerticalSnowCover(value)} + options={{ + allowNegative: false, + allowDecimal: false + }} />
cm