瀏覽代碼

temp fix

master
cyril.tsui 1 周之前
父節點
當前提交
bbfcf07a4c
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. +2
    -2
      src/components/PoDetail/PoDetail.tsx

+ 2
- 2
src/components/PoDetail/PoDetail.tsx 查看文件

@@ -408,7 +408,7 @@ const PoDetail: React.FC<Props> = ({ po, qc, warehouse }) => {
const handleChange = useCallback(debounce((e: React.ChangeEvent<HTMLInputElement>) => {
const raw = e.target.value;
const id = e.target.id
const temp = [...polInputList]
const temp = polInputList
switch (id) {
case "lotNo":
if (raw.trim() === '') {
@@ -438,7 +438,7 @@ const PoDetail: React.FC<Props> = ({ po, qc, warehouse }) => {
default:
break;
}
setPolInputList(() => temp)
// setPolInputList(() => temp)
}, 300), [rowIndex]);
return (
<>


Loading…
取消
儲存