지붕재 할당 팝업 적용 안되는 현상 수정

This commit is contained in:
hyojun.choi 2025-02-06 17:30:15 +09:00
parent e01a27b779
commit 01b045c5ac

View File

@ -142,7 +142,15 @@ export default function ContextRoofAllocationSetting(props) {
<div className="flex-ment">
<span>W</span>
<div className="input-grid">
<input type="text" className="input-origin block" defaultValue={roof.width} readOnly={roof.widAuth === 'R'} />
<input
type="text"
className="input-origin block"
defaultValue={roof.width}
readOnly={roof.widAuth === 'R'}
onChange={(e) => {
handleChangeInput(e, 'width', index)
}}
/>
</div>
</div>
</div>
@ -152,7 +160,15 @@ export default function ContextRoofAllocationSetting(props) {
<div className="flex-ment">
<span>L</span>
<div className="input-grid">
<input type="text" className="input-origin block" defaultValue={roof.length} readOnly={roof.lenAuth === 'R'} />
<input
type="text"
className="input-origin block"
defaultValue={roof.length}
readOnly={roof.lenAuth === 'R'}
onChange={(e) => {
handleChangeInput(e, 'length', index)
}}
/>
</div>
</div>
</div>
@ -169,6 +185,7 @@ export default function ContextRoofAllocationSetting(props) {
className="input-origin block"
value={parseInt(roof.hajebichi)}
readOnly={roof.roofPchAuth === 'R'}
onChange={(e) => handleChangeInput(e, 'hajebichi', index)}
/>
</div>
</div>