瀏覽代碼

dodetail fix

bomUpdateTest
CANCERYS\kw093 4 月之前
父節點
當前提交
8e6dd474ec
共有 1 個檔案被更改,包括 2 行新增0 行删除
  1. +2
    -0
      src/components/DoDetail/DoDetail.tsx

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

@@ -23,11 +23,13 @@ import { SessionWithTokens } from "@/config/authConfig"; // Import the correct
type Props = { type Props = {
id?: number; id?: number;
defaultValues: Partial<DoDetailType> | undefined; defaultValues: Partial<DoDetailType> | undefined;
workbenchRelease?: boolean;
} }


const DoDetail: React.FC<Props> = ({ const DoDetail: React.FC<Props> = ({
defaultValues, defaultValues,
id, id,
workbenchRelease = true,
}) => { }) => {
const { t } = useTranslation("do") const { t } = useTranslation("do")
const router = useRouter(); const router = useRouter();


Loading…
取消
儲存