Browse Source

add blocked in TPublicity

visuddhinanda 2 năm trước cách đây
mục cha
commit
25efed34e9
1 tập tin đã thay đổi với 6 bổ sung1 xóa
  1. 6 1
      dashboard/src/components/studio/PublicitySelect.tsx

+ 6 - 1
dashboard/src/components/studio/PublicitySelect.tsx

@@ -1,7 +1,12 @@
 import { ProFormSelect } from "@ant-design/pro-components";
 import { useIntl } from "react-intl";
 
-export type TPublicity = "disable" | "private" | "public_no_list" | "public";
+export type TPublicity =
+  | "disable"
+  | "blocked"
+  | "private"
+  | "public_no_list"
+  | "public";
 
 interface IWidget {
   width?: number | "md" | "sm" | "xl" | "xs" | "lg";