From 65878708bec2356f70f1633707b45c10d7be121c Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Mon, 24 Jun 2024 13:07:16 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88?= =?UTF-8?q?=E0=B8=A1=20status?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/product-service/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stores/product-service/types.ts b/src/stores/product-service/types.ts index c85a4155..5def270f 100644 --- a/src/stores/product-service/types.ts +++ b/src/stores/product-service/types.ts @@ -122,6 +122,7 @@ export interface ProductCreate { name: string; code: string; image?: File; + status?: Status; } export interface ProductUpdate { @@ -134,6 +135,7 @@ export interface ProductUpdate { detail: string; name: string; image?: File; + status?: Status; } //