|
|
|
@@ -615,7 +615,7 @@ const handleAssignByLane = useCallback(async ( |
|
|
|
sx={{ minWidth: 200 }} |
|
|
|
size="small" |
|
|
|
renderInput={(params) => ( |
|
|
|
<TextField {...params} placeholder={t("A4 Printer")} /> |
|
|
|
<TextField {...params} placeholder={t("A4 Printer")}inputProps={{ ...params.inputProps, readOnly: true }} /> |
|
|
|
)} |
|
|
|
/> |
|
|
|
|
|
|
|
@@ -632,7 +632,7 @@ const handleAssignByLane = useCallback(async ( |
|
|
|
sx={{ minWidth: 200 }} |
|
|
|
size="small" |
|
|
|
renderInput={(params) => ( |
|
|
|
<TextField {...params} placeholder={t("Label Printer")} /> |
|
|
|
<TextField {...params} placeholder={t("Label Printer")} inputProps={{ ...params.inputProps, readOnly: true }}/> |
|
|
|
)} |
|
|
|
/> |
|
|
|
|
|
|
|
|