Compare commits

...

2 Commits

View File

@ -2163,7 +2163,7 @@ export default function StuffDetail() {
onChange={(value) => form.setValue('verticalSnowCover', value)}
options={{
allowNegative: false,
allowDecimal: false
allowDecimal: false,
}}
/>
</div>
@ -2235,7 +2235,7 @@ export default function StuffDetail() {
onChange={(value) => form.setValue('installHeight', value)}
options={{
allowNegative: false,
allowDecimal: false
allowDecimal: false,
}}
/>
</div>
@ -2448,7 +2448,7 @@ export default function StuffDetail() {
</div>
</td>
</tr>
<tr>
<tr style={{ display: session?.storeLvl === '1' ? '' : 'none' }}>
<th>
<div className="flx-box">
<div className="title">
@ -2759,7 +2759,7 @@ export default function StuffDetail() {
onChange={(value) => form.setValue('verticalSnowCover', value)}
options={{
allowNegative: false,
allowDecimal: false
allowDecimal: false,
}}
/>
</div>
@ -2835,7 +2835,7 @@ export default function StuffDetail() {
onChange={(value) => form.setValue('installHeight', value)}
options={{
allowNegative: false,
allowDecimal: false
allowDecimal: false,
}}
/>
</div>
@ -2966,7 +2966,7 @@ export default function StuffDetail() {
<WindSelectPop setShowWindSpeedButtonValid={setShowWindSpeedButtonValid} prefName={form.watch('prefName')} windSpeedInfo={setWindSppedInfo} />
)}
{estimatePopupOpen && <DocDownOptionPop planNo={popPlanNo} setEstimatePopupOpen={setEstimatePopupOpen} createStoreId={createSaleStoreId}/>}
{estimatePopupOpen && <DocDownOptionPop planNo={popPlanNo} setEstimatePopupOpen={setEstimatePopupOpen} createStoreId={createSaleStoreId} />}
</>
)
}