addscss
This commit is contained in:
parent
1c464221a2
commit
544e282bd0
|
|
@ -15,6 +15,7 @@ import {
|
|||
import { useDispatch, useSelector } from 'react-redux';
|
||||
import { validateSafeInput } from '../../../../../Services/Others';
|
||||
import { TextAreaInput } from '../../../../../../ownLib/my-ui-lib';
|
||||
import "../../../../../Styles/BookingScreen/Components/BSBillingTables/BSBillingEditQuantity/BSBillingEditQuantity.scss"
|
||||
const BSImeiDetails = (props) => {
|
||||
const formRef = useRef(null);
|
||||
const dispatch = useDispatch();
|
||||
|
|
@ -89,7 +90,7 @@ const BSImeiDetails = (props) => {
|
|||
}
|
||||
} else {
|
||||
setMessageType('error');
|
||||
setMessageData('you cant enter more than Order Qty');
|
||||
setMessageData('you cant enter more than Order Qty');
|
||||
}
|
||||
|
||||
formRef.current?.resetFields();
|
||||
|
|
@ -184,7 +185,7 @@ const BSImeiDetails = (props) => {
|
|||
<DefaultModal
|
||||
title={
|
||||
<div className="EditQuantity-title">
|
||||
<FormHeader title={'Device Identifieer'} />
|
||||
<FormHeader title={'Device Identifier'} />
|
||||
</div>
|
||||
}
|
||||
open={DeviceDetailOpen}
|
||||
|
|
@ -385,6 +386,10 @@ const BSImeiDetails = (props) => {
|
|||
<div style={{ display: "flex", marginTop: "10px" }}>
|
||||
<Form.Item name="description">
|
||||
<TextAreaInput
|
||||
disabled={
|
||||
(IMEINumberList?.length === 0) &&
|
||||
(SerialNumberList?.length === 0)
|
||||
}
|
||||
autoComplete="off"
|
||||
label={<label>Description..</label>}
|
||||
defaultValue=""
|
||||
|
|
|
|||
Loading…
Reference in New Issue