diff --git a/src/views/article/index.tsx b/src/views/article/index.tsx index 54b9594..8fa8e45 100644 --- a/src/views/article/index.tsx +++ b/src/views/article/index.tsx @@ -288,7 +288,7 @@ const Article: FC = props => { // 如果 status 为 1 那么 status 为 warning status={status === 1 ? "" : "error"} value={status.toString()} - options={PushStatusList} + options={[{value: 1, label: 'Published'}, {value: 2, label: 'InReview'}]} onChange={(value) => handleStatusChange(articleId, Number(value))} > ;