visuddhinanda 1 год назад
Родитель
Сommit
25efed34e9
1 измененных файлов с 6 добавлено и 1 удалено
  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";