ソースを参照

fixing the input field overlap words problem in stock in po

production
PC-20260115JRSN\Administrator 2日前
コミット
2fd39d6b96
1個のファイルの変更14行の追加2行の削除
  1. +14
    -2
      src/components/PoDetail/PoDetailRow.tsx

+ 14
- 2
src/components/PoDetail/PoDetailRow.tsx ファイルの表示

@@ -329,10 +329,22 @@ export const PoDetailRow = memo(function PoDetailRow({
onChange={(e) => setDnQtyInput(e.target.value.replace(/[^\d]/g, ""))}
onBlur={() => onInputBlur(row.id, lotNoInput, dnQtyInput)}
onClick={(e) => e.stopPropagation()}
sx={{ minWidth: 132, width: 148, flexShrink: 0 }}
sx={{
minWidth: 168,
width: 168,
flexShrink: 0,
"& .MuiInputLabel-root": {
maxWidth: "calc(100% - 44px)",
},
"& .MuiInputBase-input": {
pr: 0.5,
},
}}
InputLabelProps={{ shrink: true }}
InputProps={{
notched: true,
endAdornment: uomShort ? (
<InputAdornment position="end">
<InputAdornment position="end" sx={{ ml: 0.5 }}>
<Typography
component="span"
sx={{


読み込み中…
キャンセル
保存